GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / ToolTipText Property
In This Topic
    ToolTipText Property (GoView)
    In This Topic
    Gets or sets a string to be displayed in a tooltip when no tooltip text is shown for a particular GoObject.
    Syntax
    [Category("Behavior")]
    [DefaultValue("")]
    [Description("A string to be displayed in a tooltip.")]
    public virtual string ToolTipText {get; set;}

    Property Value

    The initial value is the empty string, which means don't display a tooltip.
    Remarks
    Note that this is different from the same property that you may find on some GoObject classes such as GoNode (GoNode.ToolTipText), since here an empty string is the same as a value of null/Nothing, meaning not to display a tooltip. For GoObjects a value from GoObject.GetToolTip of an empty string will display an empty tooltip, and only a value of null/Nothing will indicate no tooltip for that particular GoObject.
    See Also