InitListVariable

Příprava hodnot v listové proměnné

Popis

declare procedure InitListVariable dll "ActualDocument" (string, integer, pointer)

InitListVariable("MyStringList;MyIntegerList;MyBooleanList", 5, ActualDocument)

// nejdříve index 4
wkf.MyStringList[4] := "Hodnota 4"
wkf.MyIntegerList[4] := 4
wkf.MyBooleanList[4] := true

// později index 1
wkf.MyStringList[1] := "Hodnota 1"
wkf.MyIntegerList[1] := 1
wkf.MyBooleanList[1] := false