1234567891011121314151617181920212223242526 |
- namespace TSZ.DotNetDll.WinForms
- {
- using System;
- using System.Runtime.CompilerServices;
- using TSZ.DotNetDll;
- public class GridColumnInfo
- {
- public string ColName { get; set; }
- public ColumnTypes ColumnType { get; set; }
- public string HeaderText { get; set; }
- public string LinkText { get; set; }
- public KeyValueEntity[] ListValues { get; set; }
- public string MapColName { get; set; }
- public bool ReadOnly { get; set; }
- public int Width { get; set; }
- }
- }
|