ControlDesigner.AllowResize Property

 

Gets a value indicating whether the control can be resized in the design-time environment.

Namespace:   System.Web.UI.Design
Assembly:  System.Design (in System.Design.dll)

Public Overridable ReadOnly Property AllowResize As Boolean

Property Value

Type: System.Boolean

true, if the control can be resized; otherwise, false.

Notes to Inheritors:

Use the AllowResize property in derived classes to enable or disable page developers from resizing your control in the design host.

The following code example demonstrates how to override the AllowResize property in a custom control designer class.

This code example is part of a larger example provided for the TemplateGroups property.

' Do not allow direct resizing unless in TemplateMode
Public Overrides ReadOnly Property AllowResize() As Boolean
    Get
        If Me.InTemplateMode Then
            Return True
        Else
            Return False
        End If
    End Get
End Property

.NET Framework
Available since 1.1
Return to top
Show: