Skip to main content
Bar

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

OBSOLETE

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

Initializes a new Bar object with the specified settings.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

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
)

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

The dock style of the created Bar class instance. Determines 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.

See Also