Visara Master Console Center Scripting Guide Uživatelský manuál Strana 77

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 262
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 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
Zobrazit stránku 76
1 2 ... 72 73 74 75 76 77 78 79 80 81 82 ... 261 262

Komentáře k této Příručce

Žádné komentáře