Spread for ASP.NET 8.0 Product Documentation
AddColumn(Int32) Method
Example 


Column index
Adds a filter column definition to the row filter.
Syntax
'Declaration
 
Public Overloads Sub AddColumn( _
   ByVal viewColumnIndex As Integer _
) 
'Usage
 
Dim instance As DefaultRowFilter
Dim viewColumnIndex As Integer
 
instance.AddColumn(viewColumnIndex)
public void AddColumn( 
   int viewColumnIndex
)

Parameters

viewColumnIndex
Column index
Example
This example sets a row filter.
FarPoint.Web.Spread.NamedStyle instyle = new FarPoint.Web.Spread.NamedStyle();
FarPoint.Web.Spread.NamedStyle outstyle = new FarPoint.Web.Spread.NamedStyle();
instyle.BackColor = Color.Yellow;
outstyle.BackColor = Color.Aquamarine;
FarPoint.Web.Spread.StyleRowFilter sf = new FarPoint.Web.Spread.StyleRowFilter(FpSpread1.Sheets[0], instyle, outstyle);
sf.AddColumn(1);
FpSpread1.Sheets[0].RowFilter = sf;
Dim instyle As New FarPoint.Web.Spread.NamedStyle()
Dim outstyle As New FarPoint.Web.Spread.NamedStyle()
instyle.BackColor = Color.Yellow
outstyle.BackColor = Color.Aquamarine
Dim sf As New FarPoint.Web.Spread.StyleRowFilter(FpSpread1.Sheets(0), instyle, outstyle)
sf.AddColumn(1)
FpSpread1.Sheets(0).RowFilter = sf
Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

Reference

DefaultRowFilter Class
DefaultRowFilter Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.