Skip to main content
A newer version of this page is available. .

LabelAutoSizeMode Enum

LIsts values that specify how the label is automatically resized to display its entire contents.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v18.1.dll

Declaration

public enum LabelAutoSizeMode

Members

Name Description
Default

In Visual Studio 2002 and 2003, the same as the None option.

In Visual Studio 2005 and more recent versions, the same as the Horizontal option.

None

Disables the auto size mode. An end-user is allowed to change both the label’s width and height.

Horizontal

The label is automatically resized to display its entire contents horizontally. The label’s size depends only on the length of the text and the font settings, the label cannot be resized by an end-user.

Vertical

The label’s height is automatically changed to display its entire contents. In this instance, an end-user can change the label’s width while its height is automatically adjusted to fit the label’s text.

Related API Members

The following properties accept/return LabelAutoSizeMode values:

Remarks

The values listed by this enumeration are used to set the LabelControl.AutoSizeMode property.

The following code snippets (auto-collected from DevExpress Examples) contain references to the LabelAutoSizeMode enum.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also