コード例 #1
0
ファイル: DMElementInfo.cs プロジェクト: BeauPrime/BeauUtil
 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
     });
 }
コード例 #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);
 }