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

AdvBandedGridOptionsNavigation.Assign(BaseOptions) Method

Copies all settings from the options object passed as a parameter.

Namespace: DevExpress.XtraGrid.Views.BandedGrid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public override void Assign(
    BaseOptions options
)

Parameters

Name Type Description
options BaseOptions

A BaseOptions descendant whose settings are assigned to the current object.

Remarks

The Assign method is useful if you need to have the same or slightly different options across several Views. It allows you to set options once and then copy them to other Views.

Generally, you will use the Assign method to copy settings from one AdvBandedGridOptionsNavigation object to another. The parameter is the source object. The caller is the destination object.

See Also