Spread ASP.NET 6.0 Product Documentation
HideRowFilter Constructor(SheetView)
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > HideRowFilter Class > HideRowFilter Constructor : HideRowFilter Constructor(SheetView)


sheetView
SheetView object containing 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 containing 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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.