コード例 #1
0
 public ChordLinePane(string text, SongFormatOptions options, float x0, string label)
     : base(options, x0, label)
 {
     m_text = text;
 }
コード例 #2
0
 public SongFormatter(string text, SongFormatOptions options)
 {
     m_panegrp = new PaneGrp();
     m_text = text;
     m_options = options;
 }
コード例 #3
0
 protected Pane(SongFormatOptions options)
 {
     m_options = options;
 }
コード例 #4
0
 protected LabelablePane(SongFormatOptions options, float x0, string label)
     : base(options)
 {
     m_x0 = x0;
     m_label = label;
 }
コード例 #5
0
 public LabelLinePane(SongFormatOptions options, string label)
     : base(options)
 {
     m_label = label;
 }
コード例 #6
0
 public ParagraphSeparatorPane(SongFormatOptions options)
     : base(options)
 {
 }
コード例 #7
0
 public SongFormatPane(SongFormatOptions options)
     : base(options)
 {
 }