ClassExists(string)

grandMA3 ユーザマニュアル » プラグイン » Lua 関数 - Object-Free API » ClassExists(string) Version 2.0

説明

ClassExists 関数は、指定された文字列がクラスであるかどうかを示す boolean 値を返します。

引数

  • string:
    クラスとなりうる1つの単語を含む文字列。

戻り値

  • boolean:
    以下の boolean 値を返します。
    • true:
      指定された単語はクラスです。
    • false:
      指定された単語はクラスではありません。

"Display" という単語がクラスであるかどうかを尋ね、適切なフィードバックを返します。

Lua
return function()
-- Store a string with the class name
local className = "Display"
-- Check if the class exists and then provide proper feedback
if ClassExists(className) then
Printf("The class '%s' exists", className)
else
Printf("The class '%s' does not exists", className)
end
end