Spread for ASP.NET 7.0 Product Documentation
HideRowFilter Constructor(SheetView)
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > HideRowFilter Class > HideRowFilter Constructor : HideRowFilter Constructor(SheetView)


sheetView
SheetView object that contains the sheet

Glossary Item Box

Creates a new row filter for the specified sheet that hides rows that match the criteria.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal sheetView As SheetView _
)
Visual Basic (Usage)Copy Code
Dim sheetView As SheetView
 
Dim instance As New HideRowFilter(sheetView)
C# 
public HideRowFilter( 
   SheetView sheetView
)

Parameters

sheetView
SheetView object that contains the sheet

Example

This example sets a row filter.
C#Copy Code
FarPoint.Web.Spread.HideRowFilter hider = new FarPoint.Web.Spread.HideRowFilter(FpSpread1.ActiveSheetView);
hider.AddColumn(2);
FpSpread1.ActiveSheetView.RowFilter = hider;
Visual BasicCopy Code
Dim hider As New FarPoint.Web.Spread.HideRowFilter(FpSpread1.ActiveSheetView)
hider.AddColumn(2)
FpSpread1.ActiveSheetView.RowFilter = hider

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

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.