IFrameFilter::ParamDesc Structure

フレームフィルタのパラメータを表すParamDesc構造体です。
IFrameFilter::getAvailableParametersクラスライブラリリファレンス>クラス>IFrameFilter>IFrameFilter::getAvailableParameters Methodをコールすることでこの構造体を含むtParamArrayクラスライブラリリファレンス>クラス>IFrameFilter>tParamArrayを取得することができます。

構文

struct ParamDesc
{
  wchar_t    name[30];
  tParamType  type;
  wchar_t    typeDesc[30];
  std::string  getTypeDesc() const;
  std::string  getName() const;
};
メンバ 説明
name パラメータの名前です。
type パラメータの型を表すtParamTypeクラスライブラリリファレンス>クラス>IFrameFilter>IFrameFilter::ParamDesc Structureです。
typeDesc パラメータの型を表す文字列です。
getTypeDesc std::stringを返すヘルパ関数でパラメータの型を表します。
getName std::stringにあるパラメータの名前を返すヘルパ関数です。