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