HandleToStr(handle)

Lua 関数の HandleToStr は、ハンドルを16進数形式の文字列に変換します。

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

引数

戻り値

この例では、選択されているシーケンスのハンドルを16進数文字列に変換して出力しています。また、この文字列をハンドルに変換し、これを用いてシーケンス名を出力しています。

local function main()
    local mySequence = SelectedSequence()        -- Store the handle of the selected sequence
    local mySeqStr = HandleToStr(mySequence)     -- Store a string with the handle converted to hex
    
    Printf("The handle for the selected sequence (string): " .. mySeqStr)
    
    Printf("The name of the selected sequence is: " .. StrToHandle(mySeqStr).name)
end

return main