Exemplo n.º 1
0
 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
     });
 }
Exemplo n.º 2
0
 /// <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);
 }