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