Syncfusion GridControl - Create extended Custom Column Properties
Syncfusion GridControl - Create extended Custom Column Properties When you need some additional information stored. Which can used in the runtime for saving or validating. you will need to have extended column properties. With we can some additional properties in GridControl which can be accessed in code. Such as is the column required, Custom Error Message , DataType, Fieldname in database which will be linked to column and so on. created a property which take information as per column index Syncfusion GridControl is inherited and custom grid is created namespace ATS.WinForms.Controls { public partial class Grid : GridControl { [Description("Set Grid Column Properties"), Category("ATS")] [EditorAttribute(typeof(System.ComponentModel.Design.ArrayEditor), typeof(System.Drawing.Design.UITypeEditor))] public GridColumnProperties[] ColumnProperties { get { ...