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

    Property Value

    This defaults to true. You should normally call the CanView method instead of getting this property. If you set this property to false, you probably also want to set the Printable property to false.
    Remarks
    A false value prevents the user from seeing this object by the normal painting mechanisms. Even when this property value is true, this object might not be seeable by the user because the object's layer is not visible. A user will not normally be able to select an invisible object or do other interactive operations with an invisible object. However, an invisible object can still be part of a layer and document or view, and can still take part in all programmatic operations such as manipulating its bounds.
    See Also