ControlDesigner.AllowResize Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the control can be resized in the design-time environment.
public:
virtual property bool AllowResize { bool get(); };
public virtual bool AllowResize { get; }
member this.AllowResize : bool
Public Overridable ReadOnly Property AllowResize As Boolean
true
, if the control can be resized; otherwise, false
.
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 override bool AllowResize
{
get
{
if (this.InTemplateMode)
return true;
else
return false;
}
}
' 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
Use the AllowResize property in derived classes to enable or disable page developers from resizing your control in the design host.
Продукт | Версії |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Відгук про .NET
.NET – це проект із відкритим кодом. Виберіть посилання, щоб надати відгук: