[]
Represents a label form control on a worksheet.
Use this interface to display text such as captions, prompts, or field names in a worksheet form.
An ILabel is added through a worksheet's control collection and inherits common control
members from IControl<T> and text content members from IContentControl.
public interface ILabel : IControl<ILabel>, IContentControl, IControl
Public Interface ILabel
Inherits IControl(Of ILabel), IContentControl, IControl
ILabel label = worksheet.Controls.AddLabel(20, 20, 120, 24);
label.Text = "Resolution";
label.PrintObject = true;