IntToHandle(integer)

IntToHandle は、整数をハンドルに変換する object-free 関数です。整数は、実際のハンドルと関連付けられている必要があります。

ハンドルの詳細や関連関数については、ハンドル を参照してください。

引数

戻り値

この例では、選択されているシーケンスのハンドルと関連付けられている整数を出力しています。また、その整数をハンドルに変換し、それを用いてシーケンス名を出力しています。

local function main()
    local mySequence = SelectedSequence()        -- Store the handle to the selected sequence
    local mySeqInt = HandleToInt(mySequence)     -- Store an integer with the handle converted to integer
 
    Printf("The handle for the selected sequence (integer): " .. mySeqInt)

    Printf("The name of the selected sequence is: " .. IntToHandle(mySeqInt).name)

end

return main