Skip to main content
A newer version of this page is available.
All docs
V18.2

GridView.ColumnsCustomization(Point) Method

Invokes the Customization Form at the specified position.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

public virtual void ColumnsCustomization(
    Point showPoint
)

Parameters

Name Type Description
showPoint Point

A Point structure specifying the Customization Form’s top-left corner position. The point is set in screen coordinates.

Remarks

If the Customization Form is already visible, the ColumnsCustomization method moves it to the location specified. The form’s position can also be changed via properties provided by the form itself. See the GridView.CustomizationForm property.

If you need to invoke the Customization Form at its default location (the parent control’s right-bottom corner), use the GridView.ShowCustomization method or the ColumnsCustomization method overload without parameters.

Note

Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the ColumnsCustomization member must not be invoked for these Views. The ColumnsCustomization member can only be used with real Views that are displayed within the Grid Control. The real Views with which an end-user interacts at runtime can be accessed using the following methods.

See Also