[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Forms.ILabel

ILabel Interface

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.

Namespace: GrapeCity.Documents.Excel.Forms
Assembly: DS.Documents.Excel.dll
Syntax
public interface ILabel : IControl<ILabel>, IContentControl, IControl
Public Interface ILabel
    Inherits IControl(Of ILabel), IContentControl, IControl
Examples
ILabel label = worksheet.Controls.AddLabel(20, 20, 120, 24);
label.Text = "Resolution";
label.PrintObject = true;