static public DMElementInfo CreateText(string inLabel, DMTextDelegate inGetter, int inIndent = 0) { return(new DMElementInfo() { Type = DMElementType.Text, Label = inLabel, Text = new DMTextInfo() { Getter = inGetter }, Indent = inIndent }); }
/// <summary> /// Adds a text element to the menu. /// </summary> public DMInfo AddText(string inLabel, DMTextDelegate inGetter, int inIndent = 0) { Elements.PushBack(DMElementInfo.CreateText(inLabel, inGetter, inIndent)); return(this); }