FlexGrid for WinForms
StyleNew Property (RowCol)
Example 



Gets or sets a custom CellStyle associated with this row or column, creating a new style if necessary.
Syntax
'Declaration
 
<BrowsableAttribute(False)>
Public Overridable ReadOnly Property StyleNew As CellStyle
'Usage
 
Dim instance As RowCol
Dim value As CellStyle
 
value = instance.StyleNew
[Browsable(false)]
public virtual CellStyle StyleNew {get;}
[Browsable(false)]
public:
virtual property CellStyle^ StyleNew {
   CellStyle^ get();
}
Remarks
This property never returns null. If this element does not have a custom style, a new one will be created automatically and returned.
Example
The code below sets a column's background color to red.
// get the style associated with column 1 (create a new one if necessary)
CellStyle cs = _flex.Cols[1].StyleNew.BackColor;
            
// set the new style's back color to red
cs.BackColor = Color.Red;
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

RowCol Class
RowCol Members

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Send Feedback