See Also

TextBox Class  | TextBox Members  | Style  | Style class  | StyleSheet class

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

ClassName Property

Gets or sets a style rule class name.  The style rule is used to format the control.

[Visual Basic]
Public Property ClassName As String
[C#]
public string ClassName {get; set;}

Return Type

String value that represents the style class name used to format the control's appearance.   Default is Normal.

Remarks

You can use predefined styles in the report's stylesheet or add new ones to it.

Example

[C#] 

private void Detail_Format(object sender, System.EventArgs eArgs) 

    this.TextBox1.ClassName = "Normal"; 
    this.TextBox1.OutputFormat = null; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
   Me.TextBox1.ClassName = "Normal"
   Me.TextBox1.OutputFormat = Nothing
End Sub

See Also

TextBox Class  | TextBox Members  | Style  | Style class  | StyleSheet class

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.