Skip to main content
Tab

ASPxPopupControlBase.ShowSizeGrip Property

Gets or sets the visibility of a window’s size grip element.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(ShowSizeGrip.Auto)]
public virtual ShowSizeGrip ShowSizeGrip { get; set; }

Property Value

Type Default Description
ShowSizeGrip Auto

One of the ShowSizeGrip enumeration values.

Available values:

Name Description
Auto

The size grip’s visibility depends upon the ASPxPopupControlBase.AllowResize property setting

True

The size grip is always displayed.

False

The size grip is never displayed.

Remarks

The ShowSizeGrip property specifies the visibility of the size grip element within the control’s window. (The size grip is a special mouse pointer in the lower-right corner of a window that allows a user to click and drag the size grip to resize the window.) The size grip can be displayed: always (the ShowSizeGrip.True value), never (the ShowSizeGrip.False value) or dependent upon the ASPxPopupControlBase.AllowResize property setting (the ShowSizeGrip.Auto value).

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowSizeGrip property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also