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

    Property Value

    This defaults to true. You should normally call the CanPrint method instead of getting this property. You may also want to set the Visible property when setting this property.
    Remarks
    A false value prevents the view from printing this object by the normal mechanisms. Even when this property value is true, this object might not be printable by the view because the object's layer is not printable.
    See Also