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