Gets or sets the text that is displayed before the text box.
public string Label { get; set; }Public Property Label() As StringThe following snippet descripes how to set the label property of a Ribbon
TXTextControl.Windows.Forms.Ribbon.RibbonTextBox MyRibbonTextBox = new TXTextControl.Windows.Forms.Ribbon.RibbonTextBox();
MyRibbonTextBox.Label = "My Label for MyRibbonTextBox";Dim MyRibbonTextBox As TXTextControl.Windows.Forms.Ribbon.RibbonTextBox = New TXTextControl.Windows.Forms.Ribbon.RibbonTextBox()
MyRibbonTextBox.Label = "My Label for RibbonTextBox"