GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoObject Class / Editable Property
In This Topic
    Editable Property
    In This Topic
    Gets or sets whether the user can edit this object.
    Syntax
    [Category("Behavior")]
    [DefaultValue(false)]
    [Description("Whether users can edit this object.")]
    public virtual bool Editable {get; set;}

    Property Value

    This defaults to false. You should normally call the CanEdit method instead of getting this property.
    Remarks
    A false value prevents the user from editing this object by the normal mechanisms. Even when this property value is true, this object might not be editable by the user because the layer or document disallows it, or because the view disallows it. Your code can always edit objects programmatically by calling obj.DoBeginEdit(aView).
    See Also