GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoDocument Class / AllowResize Property
In This Topic
    AllowResize Property (GoDocument)
    In This Topic
    Gets or sets whether the user can resize selected objects in this document.
    Syntax
    [Category("Behavior")]
    [DefaultValue(true)]
    [Description("Whether the user can resize selected objects in this document.")]
    public virtual bool AllowResize {get; set;}
    Remarks
    A false value prevents the user from resizing objects in this document by the normal mechanisms. Even when this property value is true, some objects might not be resizable by the user because the object or its layer disallows it, or because the view disallows it. Your code can always resize objects programmatically by calling obj.Size = newSize or obj.Bounds = newRect.
    See Also