Exemplo n.º 1
0
        /// <summary>
        /// Texts the index of the row configuration at.
        /// </summary>
        /// <param name="index">The index.</param>
        /// <returns></returns>
        public UPMCoITextRowViewConfig TextRowConfigAtIndex(int index)
        {
            while (index >= this.textRowConfig.Count)
            {
                this.textRowConfig.Add(UPMCoITextRowViewConfig.RowViewConfig());
            }

            return(this.textRowConfig[index]);
        }