Spread Windows Forms 12.0 Product Documentation
OutStyle Property
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace > StyleRowFilter Class : OutStyle Property
Gets the style that is applied to rows that do not satisfy the filter.
Syntax
'Declaration
 
Public ReadOnly Property OutStyle As StyleInfo
'Usage
 
Dim instance As StyleRowFilter
Dim value As StyleInfo
 
value = instance.OutStyle
public StyleInfo OutStyle {get;}

Property Value

StyleInfo object containing the style information for rows filtered out
Example
This example returns the filtered style that is applied to rows that do not satisfy the filter.
FarPoint.Win.Spread.NamedStyle instyle = new FarPoint.Win.Spread.NamedStyle();
FarPoint.Win.Spread.NamedStyleim outstyle = new FarPoint.Win.Spread.NamedStyle();
instyle.BackColor = Color.Yellow;
outstyle.BackColor = Color.Aquamarine;
FarPoint.Win.Spread.FilterColumnDefinition fcd = new FarPoint.Win.Spread.FilterColumnDefinition(1, FarPoint.Win.Spread.FilterListBehavior.SortByMostOccurrences
|  
FarPoint.Win.Spread.FilterListBehavior.Default);
FarPoint.Win.Spread.FilterColumnDefinition fcd1 = new FarPoint.Win.Spread.FilterColumnDefinition(2);
FarPoint.Win.Spread.FilterColumnDefinition fcd2 = new FarPoint.Win.Spread.FilterColumnDefinition();
FarPoint.Win.Spread.StyleRowFilter sf = new FarPoint.Win.Spread.StyleRowFilter(fpSpread1.ActiveSheet, instyle, outstyle);
sf.AddColumn(fcd);
sf.AddColumn(fcd1);
sf.AddColumn(fcd2);
fpSpread1.ActiveSheet.RowFilter = sf;
FarPoint.Win.Spread.StyleInfo si;
si = sf.OutStyle();
textBox1.Text = si.BackColor.ToString();
Dim instyle As New FarPoint.Win.Spread.NamedStyle
Dim outstyle As New FarPoint.Win.Spread.NamedStyle
instyle.BackColor = Color.Yellow
outstyle.BackColor = Color.Aquamarine
Dim fcd As New FarPoint.Win.Spread.FilterColumnDefinition(1, FarPoint.Win.Spread.FilterListBehavior.SortByMostOccurrences
Or FarPoint.Win.Spread.FilterListBehavior.Default)
Dim fcd1 As New FarPoint.Win.Spread.FilterColumnDefinition(2)
Dim fcd2 As New FarPoint.Win.Spread.FilterColumnDefinition

Dim sf As New FarPoint.Win.Spread.StyleRowFilter(fpSpread1.ActiveSheet, instyle, outstyle)
sf.AddColumn(fcd)
sf.AddColumn(fcd1)
sf.AddColumn(fcd2)
fpSpread1.ActiveSheet.RowFilter = sf

Dim si As FarPoint.Win.Spread.StyleInfo
si = sf.OutStyle()
TextBox1.Text = si.BackColor.ToString()
See Also

Reference

StyleRowFilter Class
StyleRowFilter Members