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