FormGroupControl.filter Method

Definition

Overloads

filter(String)
filter()

Is called when the user right-clicks a form group control and then clicks Filter By Selection.

filter(String)

public:
 virtual void filter(System::String ^ _filterStr);
public virtual void filter (string _filterStr);
abstract member filter : string -> unit
override this.filter : string -> unit
Public Overridable Sub filter (_filterStr As String)

Parameters

_filterStr
String

A String data type that specifies the text for the filter; optional.

Applies to

filter()

Is called when the user right-clicks a form group control and then clicks Filter By Selection.

public:
 virtual void filter();
public virtual void filter ();
abstract member filter : unit -> unit
override this.filter : unit -> unit
Public Overridable Sub filter ()

Remarks

You can override this method in a form group control by right-clicking the Methods node below the control, clicking Override Method, and then clicking filter. For information about best practices for forms and code, see No Code in Forms.

Applies to