PropertyName

Zjistí popis proměnné

Popis

declare function GetStrPropertyDescription dll "ActualDocument" (string): string

script TEST_GetStrPropertyDescription (): Boolean
var
  sRes: String
begin
  sRes := GetStrPropertyDescription("nazev_promenne")
  write(sRes)
end