Skip to content

Functions: H

2 functions (5 overloads) on BasicRuntime.Functions starting with H.

A B C D E F G H I K L M N O P Q R S T U W X Z

HEADING

2 overloads

Overload 1

static void Functions.HEADING(string heading, int channelNo, bool ejectPage)

Performs the heading operation using the supplied heading, channelNo, ejectPage.

Kind Method (static)
Returns void
Use case Call Functions.HEADING(...) directly (no instance required) when your code needs to perform the heading operation using the supplied heading, channelNo, ejectPage.
How this member is tested

Act: Functions.HEADING("sample", 1, true)
Assert: no exception is thrown and the expected side effect occurred.

Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).

Overload 2

static void Functions.HEADING(string heading, int channelNo)

Performs the heading operation using the supplied heading, channelNo.

Kind Method (static)
Returns void
Use case Call Functions.HEADING(...) directly (no instance required) when your code needs to perform the heading operation using the supplied heading, channelNo.
How this member is tested

Act: Functions.HEADING("sample", 1)
Assert: no exception is thrown and the expected side effect occurred.

Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).

HUSH

3 overloads

Overload 1

static void Functions.HUSH(DynamicArray mode)

Performs the hush operation using the supplied mode.

Kind Method (static)
Returns void
Use case Call Functions.HUSH(...) directly (no instance required) when your code needs to perform the hush operation using the supplied mode.
How this member is tested

Act: Functions.HUSH(/* a valid DynamicArray value */)
Assert: no exception is thrown and the expected side effect occurred.

Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).

Overload 2

static void Functions.HUSH(bool mode, DynamicArray oldValue)

Performs the hush operation using the supplied mode, oldValue.

Kind Method (static)
Returns void
Use case Call Functions.HUSH(...) directly (no instance required) when your code needs to perform the hush operation using the supplied mode, oldValue.
How this member is tested

Act: Functions.HUSH(true, /* a valid DynamicArray value */)
Assert: no exception is thrown and the expected side effect occurred.

Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).

Overload 3

static void Functions.HUSH(bool mode)

Performs the hush operation using the supplied mode.

Kind Method (static)
Returns void
Use case Call Functions.HUSH(...) directly (no instance required) when your code needs to perform the hush operation using the supplied mode.
How this member is tested

Act: Functions.HUSH(true)
Assert: no exception is thrown and the expected side effect occurred.

Expected: No return value; verify the intended side effect occurred (state change, event raised, or exception NOT thrown for valid input).