Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2335
XamWebGrid Cell Style Setter Values are not read able
posted

Hi,
I am trying to provide rich formating to the XamWebGrid. I am trying to add mutiple formating to a single cell like bold, italic, font size and etc. As

((

Setter)myGrid.ActiveCell.Style.Setters[0]).Property gives the proper results as per assigned property
But ((Setter)myGrid.ActiveCell.Style.Setters[0]).Value always return null after applying the style to cell.

Is there any way to get value of applied style.Setter?

And can you also help me to apply TextAlignment and underling the text in editable mode?

I tried a lot but failed to find detailed documentation about Cell.Style.Setters, Please also provide me some url to get in depth details about Style and Setter documentation with applicable properties and related values like following

 

 

myGrid.ActiveCell.Style.

 

 

Setters.Add(

new Setter(CellControl.FontStyleProperty, FontStyles

.Italic));

Thanks.