Edit

Share via


ControlDesigner.AllowResize Property

Definition

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

C#
public virtual bool AllowResize { get; }

Property Value

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

Examples

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.

C#
// Do not allow direct resizing unless in TemplateMode
public override bool AllowResize
{
    get
    {
        if (this.InTemplateMode)
            return true;
        else
            return 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.

Applies to

See also