Control Inheritance / Adding Properties

Vinodanand

New member
Joined
Dec 26, 2006
Messages
2
Programming Experience
Beginner
Hai all
I Create a User control inheriting from Ultra Grid. My query is how to add a new property to the Grids Column Member
ie
Ultragrid has Columns
Columns has many properties
I want to add a new property to every collumn in the grid

Kindly help me out
 
I've never used UltraGrid but more than likely the columns are classes themselves. You will probably have to sub-class the column class and add the property there, then add the sub-classed column to the grid instead of it's standard column.
 
Thank you for the reply
I too tried the same by subclassing it and then adding it to the grid.
But he is not allowing to add the columns to the grid. His properties are all set to read only

I get locked here and not able to proceed further
 
Back
Top