構文
Binary.Decompress(binary as nullable binary, compressionType as number) as nullable binary
バージョン情報
指定された圧縮の種類を使用してバイナリ値を展開します。 この呼び出しの結果は、入力の圧縮解除されたコピーです。 圧縮の種類は次のとおりです。
例 1
バイナリ値を展開します。
使用方法
Binary.Decompress(#binary({115, 103, 200, 7, 194, 20, 134, 36, 134, 74, 134, 84, 6, 0}), Compression.Deflate)
アウトプット
#binary({71, 0, 111, 0, 111, 0, 100, 0, 98, 0, 121, 0, 101, 0})