コード例 #1
0
 private SectionRoot(bool isRowSection, SectionedGrid ownerGrid, string sectionRole, int sectionIndex)
     : base(isRowSection, sectionRole, sectionIndex)
 {
     _parentGrid = ownerGrid;
 }
コード例 #2
0
 public static SectionRoot CreateRow(SectionedGrid ownerGrid, string sectionRole, int sectionIndex)
 {
     return(new SectionRoot(true, ownerGrid, sectionRole, sectionIndex));
 }
コード例 #3
0
 public static SectionRoot CreateColumn(SectionedGrid ownerGrid, string sectionRole, int sectionIndex)
 {
     return(new SectionRoot(false, ownerGrid, sectionRole, sectionIndex));
 }