Visara Master Console Center Scripting Guide Instrukcja Użytkownika Strona 77

  • Pobierz
  • Dodaj do moich podręczników
  • Drukuj
  • Strona
    / 262
  • Spis treści
  • BOOKMARKI
  • Oceniono. / 5. Na podstawie oceny klientów
Przeglądanie stron 76
Chapter 5 Script Commands
Scripting Guide 77
ARESET
Syntax:
ARESET( Array)
Description:
Reset the contents of an array to “empty”.
Action:
All elements of Array are discarded. Array returns to its state before
first use (its initialization state)—empty.
Parameters:
Array. Array variable. The array to reset to “nothing”.
Returns:
N/A.
Notes:
ALEN( Array) equates to zero after ARESET() operates on Array
Example:
$Arr[ 4] := “Hello”
$Arr[ 5] := “There”
%Size := ALEN( $Arr) // 2
$Var := $Arr[ 5] // “There”
ARESET( $Arr)
%Size := ALEN( $Arr) // 0
$Var := $Arr[ 5] // “”
See Also:
N/A
Przeglądanie stron 76
1 2 ... 72 73 74 75 76 77 78 79 80 81 82 ... 261 262

Komentarze do niniejszej Instrukcji

Brak uwag