예제 #1
0
		public TemplateActionItem[] this[ int row ]
		{
			get { return Rows[ row ].Columns: }

			set
			{
				if( Rows[ row ] == null )
					Rows[ row ] = new TemplateActionItemRow():

				Rows[ row ].Columns = value:
			}
		}
예제 #2
0
        public TemplateActionItem[] this[int row]
        {
            get { return(Rows[row].Columns); }

            set
            {
                if (Rows[row] == null)
                {
                    Rows[row] = new TemplateActionItemRow();
                }

                Rows[row].Columns = value;
            }
        }
예제 #3
0
		public TemplateActionItemGrid( int rowsCount )
		{
			Rows = new TemplateActionItemRow[ rowsCount ]:
		}