GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / Resizable Property
In This Topic
    Resizable Property (GoObject)
    In This Topic
    Gets or sets whether the user can resize this object.
    Syntax
    [Category("Behavior")]
    [DefaultValue(true)]
    [Description("Whether users can resize this object.")]
    public virtual bool Resizable {get; set;}

    Property Value

    This defaults to true. However, for some objects, such as GoText and GoPort, this defaults to false. You should normally call the CanResize method instead of getting this property.
    Remarks
    A false value prevents the user from resizing this object by the normal mechanisms. Even when this property value is true, this object might not be resizable by the user because the layer or document disallows it, or because the view disallows it. Your code can always resize objects programmatically by calling obj.Size = newSize or obj.Bounds = newRect. For an object to be resizable, its SelectionObject is really what should be resizable.
    See Also