Parameters
- name
Return Value
a non-editable, non-selectable, middle-aligned, non-rescaling GoText object
protected virtual GoText CreateLabel(String name) { GoText l = null; if (name != null) { l = new GoText(); l.Text = name; l.Selectable = false; l.Alignment = Middle; } return l; }