Ejemplo n.º 1
0
 private SectionRoot(bool isRowSection, SectionedGrid ownerGrid, string sectionRole, int sectionIndex)
     : base(isRowSection, sectionRole, sectionIndex)
 {
     _parentGrid = ownerGrid;
 }
Ejemplo n.º 2
0
 public static SectionRoot CreateRow(SectionedGrid ownerGrid, string sectionRole, int sectionIndex)
 {
     return(new SectionRoot(true, ownerGrid, sectionRole, sectionIndex));
 }
Ejemplo n.º 3
0
 public static SectionRoot CreateColumn(SectionedGrid ownerGrid, string sectionRole, int sectionIndex)
 {
     return(new SectionRoot(false, ownerGrid, sectionRole, sectionIndex));
 }