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