説明
Export 関数は、オブジェクトをXMLファイルにエクスポートします。
引数
- handle:
light_userdata 型のハンドルです。オブジェクトでコロン記法を用いる場合は省略できます(後述の例を参照)。
- file_path:
ファイルのパスを表す文字列です。
- file_name:
エクスポートされるファイル名を表す文字列です。
戻り値
この関数は何も返しません。オブジェクトをエクスポートします。
例
以下の2つの例は、どちらも選択したシーケンスをXMLファイルにエクスポートします。
コロン記法による例です。
|
return function() local selectedSequence = SelectedSequence() local exportPath = GetPath(Enums.PathType.UserSequences) selectedSequence:Export(exportPath, "mySelectedSequence.xml") Printf("The sequence is exported to: " .. exportPath) end |
引数にハンドルを指定しても同じ結果になります。
|
return function() local selectedSequence = SelectedSequence() local exportPath = GetPath(Enums.PathType.UserSequences) selectedSequence.Export(selectedSequence, exportPath, "mySelectedSequence2.xml") Printf("The sequence is exported to: " .. exportPath) end |