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