ActiveDelegate<T> Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.