コード例 #1
0
ファイル: Range.cs プロジェクト: BeiMeng/GitApplication
 /// <summary>
 /// 创建行
 /// </summary>
 private Row CreateRow( int index ) {
     var row = GetRow( index );
     if ( row != null )
         return row;
     row = new Row( index );
     _rows.Add( row );
     return row;
 }
コード例 #2
0
ファイル: Range.cs プロジェクト: BeiMeng/GitApplication
 /// <summary>
 /// 添加单元格
 /// </summary>
 private void AddCell( Row row, Cell cell, int rowIndex ) {
     row.Add( cell );
     if ( cell.RowSpan <= 1 )
         return;
     for ( int i = 1; i < cell.RowSpan; i++ )
         AddPlaceholderCell( cell, rowIndex + i );
 }
コード例 #3
0
ファイル: RowTest.cs プロジェクト: NetUtil/Util
 public void TestInit() {
     _row = new Row( 2 );
 }