[]
Gets or sets the text to display.
Use this property to read the current text shown by the control.
string Text { get; set; }
Property Text As String
IContentControl control = worksheet.Controls.AddLabel(20, 20, 120, 24);
control.Text = "Name";
string text = control.Text;