DataViewWebPart.NoFilter Method
Implements the NoFilter event handler. This event is sent by the provider to notify the consumer part that no filter will be provided. The consumer part should then just reuse the existing filter.
Namespace: Microsoft.SharePoint.WebPartPages
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Public Sub NoFilter ( _
sender As Object, _
e As EventArgs _
)
'Usage
Dim instance As DataViewWebPart
Dim sender As Object
Dim e As EventArgs
instance.NoFilter(sender, e)
public void NoFilter(
Object sender,
EventArgs e
)
Parameters
sender
Type: System.ObjectObject sending event
e
Type: System.EventArgsEvent arguments.
Implements
IFilterConsumer.NoFilter(Object, EventArgs)
Remarks
The NoFilter method implements the NoFilter event handler. This event is sent by the provider to notify the consumer part that a filter will not be provided. This causes the consumer Web Part to reuse the existing filter.