[]
        
(Showing Draft Content)

ILabel

Interface ILabel

All Superinterfaces:
IContentControl, IControl, IControlT<ILabel>

public interface ILabel extends IControlT<ILabel>, IContentControl
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 IControlT and text content members from IContentControl.


 ILabel label = worksheet.getControls().addLabel(20, 20, 120, 24);
 label.setText("Resolution");
 label.setPrintObject(true);