TrackBar.AutoSize Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating whether the height or width of the track bar is being automatically sized.
public:
property bool AutoSize { bool get(); void set(bool value); };
public:
virtual property bool AutoSize { bool get(); void set(bool value); };
public bool AutoSize { get; set; }
[System.ComponentModel.Browsable(true)]
public override bool AutoSize { get; set; }
member this.AutoSize : bool with get, set
[<System.ComponentModel.Browsable(true)>]
member this.AutoSize : bool with get, set
Public Property AutoSize As Boolean
Public Overrides Property AutoSize As Boolean
Property Value
true
if the track bar is being automatically sized; otherwise, false
. The default is true
.
- Attributes
Remarks
You can set the AutoSize property to true
to cause the track bar to adjust its height (if horizontally aligned) or width (if vertically aligned). The height or width is adjusted to a standard size based on the screen resolution on which the track bar is displayed. Set the AutoSize property to false
if you want to adjust the size yourself.