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