Gets or sets the current Value of the Label control.
| Visual Basic (Declaration) | |
|---|---|
Public Property Value As System.Object  | |
| C# | |
|---|---|
public System.object Value {get; set;} | |
Property Value
Object.| C# |  Copy Code | 
|---|---|
private void detail_Format(object sender, System.EventArgs eArgs) { this.label1.Value="Title"; }  | |
| Visual Basic |  Copy Code | 
|---|---|
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.Label1.Value = "Title" End Sub  | |