[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Forms.IControl.Left

Left Property

Left

Gets or sets the left position of this control.

Use this property to retrieve the current horizontal offset of the control.

Declaration
double Left { get; set; }
Property Left As Double
Examples
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
control.Left = 40;
double left = control.Left;