ActiveDelegate<T> Delegate

Definition

A delegate for testing a form state to see if a particular step is active.

public delegate bool ActiveDelegate<T>(T state);
type ActiveDelegate<'T> = delegate of 'T -> bool
Public Delegate Function ActiveDelegate(Of T)(state As T) As Boolean 

Type Parameters

T

Form state type.

Parameters

state
T

Form state to test.

Return Value

True if step is active given the current form state.

Applies to