GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoButton Class / CreateLabel Method
Example
In This Topic
    CreateLabel Method (GoButton)
    In This Topic
    Make the text label for the button.
    Syntax
    protected virtual GoText CreateLabel()

    Return Value

    By default this returns an empty GoText object
    Remarks
    This is called by the constructor.
    Example
    If you override this method, you may want the definition to do some of the things that the standard definition does:
    protected virtual GoText CreateLabel() {
      GoText l = new GoText();
      l.Selectable = false;
      return l;
    }
    See Also