SpinButtonActiveXControl.Orientation

SpinButtonActiveXControl.Orientation property

Gets and sets whether the SpinButton or ScrollBar is oriented vertically or horizontally.

public ControlScrollOrientation Orientation { get; set; }

Examples

[C#]
if(activeXControl.Orientation == Aspose.Cells.Drawing.ActiveXControls.ControlScrollOrientation.Auto)
{
    activeXControl.Orientation = Aspose.Cells.Drawing.ActiveXControls.ControlScrollOrientation.Horizontal;
}

See Also