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

BaseOptions.Assign(BaseOptions) Method

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

Namespace: DevExpress.Utils.Controls

Assembly: DevExpress.Data.v19.1.dll

Declaration

public virtual 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 used to copy settings from one BaseOptions descendant to another. The parameter is a source object. The caller is a destination object.

As implemented in the BaseOptions class, the Assign method performs nothing. It is overridden in derived classes in order to implement proper functionality.

See Also