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

Bar(BarManager, String, BarDockStyle, BarOptionFlags, Rectangle, LinksInfo, Point, Int32, BarCanDockStyle, Color, Image, Int32, Int32) Constructor

OBSOLETE

The 'BarOptionFlags AOptions' parameter is ignored. Please remove this parameter from your constructor call

Initializes a new Bar class instance.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[Obsolete("The 'BarOptionFlags AOptions' parameter is ignored. Please remove this parameter from your constructor call")]
public Bar(
    BarManager manager,
    string name,
    BarDockStyle ADockStyle,
    BarOptionFlags AOptions,
    Rectangle floatRect,
    LinksInfo linksInfo,
    Point dockPos,
    int offset,
    BarCanDockStyle canDockStyle,
    Color backColor,
    Image backImage,
    int barItemHorzIndent,
    int barItemVertIndent
)

Parameters

Name Type Description
manager BarManager

A BarManager object representing the owner of the created bar. This value is assigned to the Bar.Manager property.

name String

A string value representing the name of the created bar. This value is assigned to the Bar.BarName property.

ADockStyle BarDockStyle

A BarDockStyle enumeration value specifying the edge of the container to which the bar is docked. This value is assigned to the Bar.DockStyle property.

AOptions BarOptionFlags

This parameter is ignored.

floatRect Rectangle

A System.Drawing.Rectangle structure that specifies the floating size and location of the created bar. This value is used to initialize the Bar.FloatSize and Bar.FloatLocation properties.

linksInfo DevExpress.XtraBars.LinksInfo

A LinksInfo object representing the internal links collection. This value is assigned to the Bar.LinksPersistInfo property.

dockPos Point

A System.Drawing.Point structure specifying the position of the created bar among other bars docked to the same container’s edge. This value is used to initialize the Bar.DockRow and Bar.DockCol properties.

offset Int32

An integer value that specifies the offset of the created bar from the dock site’s left or top edge (when the bar is oriented horizontally or vertically, respectively). This value is assigned to the Bar.Offset property.

canDockStyle BarCanDockStyle

A set of BarDockStyle flags that specifies edges of the container to which the bar can be docked. This value is assigned to the Bar.CanDockStyle property.

backColor Color

A System.Drawing.Color structure that specifies the bar’s background color. This value is assigned to the Bar.BackColor property.

backImage Image

A System.Drawing.Image object representing the bar’s background image. This value is assigned to the Bar.BackgroundImage property.

barItemHorzIndent Int32

An integer value specifying the indent of item contents to their edges in the same direction as the current bar’s orientation. This value is assigned to the Bar.BarItemHorzIndent property.

barItemVertIndent Int32

An integer value specifying the indent of item contents to their edges in the opposite direction of the current bar’s orientation. This value is assigned to the Bar.BarItemVertIndent property.

Remarks

Do not use this constructor in applications. It is used internally to provide support for the previous XtraBars versions.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Bar(BarManager, String, BarDockStyle, BarOptionFlags, Rectangle, LinksInfo, Point, Int32, BarCanDockStyle, Color, Image, Int32, Int32) constructor.

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