See Also

TextBox Class  | TextBox Members

Language

Visual Basic

C#

Show All

See Also Languages ActiveReports Send feedback to Data Dynamics

Text Property

Gets or sets the formatted text value to be rendered in the control.

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

Return Type

String value that represents the text to be rendered in the control.

Remarks

Use the Value property to modify the control's content, the Value will be formatted using OutputFormat into the Text property.

Example

[C#] 

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

    this.TextBox1.Text = "TextBox"; 
}

[Visual Basic] 

Private Sub Detail_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail.Format
   Me.TextBox1.Text = "TextBox"
End Sub

See Also

TextBox Class  | TextBox Members

 

 


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