Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

WinExplorerView.GetColumn(WinExplorerViewFieldType) Method

Gets a column assigned to the specific field within this WinExplorerView.

Namespace: DevExpress.XtraGrid.Views.WinExplorer

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

public GridColumn GetColumn(
    WinExplorerViewFieldType fieldType
)

#Parameters

Name Type Description
fieldType DevExpress.XtraGrid.Views.WinExplorer.WinExplorerViewFieldType

A WinExplorerViewFieldType enumerator value that specifies a field whose assigned column shall be obtained.

#Returns

Type Description
GridColumn

A GridColumn assigned to the specific field within this WinExplorerView.

#Remarks

Use the GetColumn method to get a column assigned to the desired WinExplorerView field. For example, the following code gets a column that serves as the Description column (see the WinExplorerViewColumns.DescriptionColumn property):

winExplorerView1.GetColumn(WinExplorerViewFieldType.Description);
See Also