[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Forms.IContentControl.Text

Text Property

Text

Gets or sets the text to display.

Use this property to read the current text shown by the control.

Declaration
string Text { get; set; }
Property Text As String
Examples
IContentControl control = worksheet.Controls.AddLabel(20, 20, 120, 24);
control.Text = "Name";
string text = control.Text;