public TemplateActionItem[] this[ int row ] { get { return Rows[ row ].Columns: } set { if( Rows[ row ] == null ) Rows[ row ] = new TemplateActionItemRow(): Rows[ row ].Columns = value: } }
public TemplateActionItem[] this[int row] { get { return(Rows[row].Columns); } set { if (Rows[row] == null) { Rows[row] = new TemplateActionItemRow(); } Rows[row].Columns = value; } }
public TemplateActionItemGrid( int rowsCount ) { Rows = new TemplateActionItemRow[ rowsCount ]: }