Skip to main content

LookUpColumnInfo(String, Int32) Constructor

Creates an instance of the LookUpColumnInfo class and sets its field name and width to the specified values.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[EditorBrowsable(EditorBrowsableState.Never)]
public LookUpColumnInfo(
    string fieldName,
    int width
)

Parameters

Name Type Description
fieldName String

The value to initialize the LookUpColumnInfo.FieldName property.

width Int32

The value to initialize the LookUpColumnInfo.Width property.

Remarks

The constructor creates a column and sets its LookUpColumnInfo.FieldName and LookUpColumnInfo.Width properties to the values specified.

Other properties are set as follows:

After a column has been created, you can add it to a lookup editor’s column collection by using the LookUpColumnInfoCollection.Add method, for instance. To access the column collection, see the RepositoryItemLookUpEdit.Columns property.

See Also