GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoText Class / Bordered Property
In This Topic
    Bordered Property (GoText)
    In This Topic
    Gets or sets whether a simple border is drawn around the text.
    Syntax
    [Category("Appearance")]
    [DefaultValue(false)]
    [Description("Whether a simple border using the TextColor is drawn around the text.")]
    public virtual bool Bordered {get; set;}

    Property Value

    the default value is false, indicating no border
    Remarks
    The line drawn around the text is drawn using a solid Pen whose color is TextColor. If you need more complex borders, wider margins around the text, or other visual effects, you will need to override Paint or compose different objects using a GoGroup. Note that the Bounds of this object are not changed by setting this property. However, this property does affect the result of ExpandPaintBounds, just as the Shadowed property also affects that method.
    See Also