public string GetFieldNameByIndex(int index)
        {
            IDataSetSource ds = DataSource as IDataSetSource;

            if (ds != null)
            {
                return(ds.GetFieldNameByIndex(index));
            }
            return(string.Empty);
        }