[]
Gets or sets the left position of this control.
Use this property to retrieve the current horizontal offset of the control.
double Left { get; set; }
Property Left As Double
IControl control = worksheet.Controls.AddButton(20, 20, 120, 30);
control.Left = 40;
double left = control.Left;