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