Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Properties

  • type

    • Parametertyp

    • read only

    • number

  • value

    • Parameterwert

    • read only

    • JS-Variable, je nach Inhalt

  • rawValue

    • Parameterwert als String, so wie es per BINRPC übertragen wird

    • read only

    • string

Code

Code Block
languagejstitleCode
rc.apps.outputParams.set("op1","a");
const outputParam = rc.apps.outputParams.get("op1");
rc.console.log("value : " + outputParam.value);
rc.console.log("type : " + outputParam.type);
rc.console.log("rawValue : " + outputParam.rawValue);
actionscript3collapsetrue
Code Block
language
Expand
titleOutput
Code Block
language
actionscript3
value : a
type : 2
rawValue : a

Methoden

VARIANT getBinaryValue(BinaryTargetType TargetType)

  • gibt den Wert von BASE64 Parameter in binärer Form zurück

  • Parameter

    • TargetType : welche binäre Form soll erstellt werden.

Code

Code Block
languagejstitleCode
enum BinaryTargetType
{  
    bttIStream = 0,
    bttUint8Array = 1
}
  • Rückgabewert: IStream oder Uint32Array

Siehe auch rc.lib