FrameFilterImpl.AddBoolParam Method
FrameFilterクラスライブラリリファレンス>クラス>FrameFilterのメソッドを使ってアクセスできるboolean(ブール型)パラメータの登録を行います。
構文
[C#]
public delegate void SetBoolParam( bool value );
public delegate bool GetBoolParam();
protected void AddBoolParam( string name, SetBoolParam setFunc, GetBoolParam getFunc );
パラメータ | 説明 |
---|---|
name | パラメータの名前です。アクセスするためにはこの文字列を SetBoolParameterクラスライブラリリファレンス>クラス>FrameFilter>FrameFilter.SetBoolParameter Method か FrameFilter.GetBoolParameterクラスライブラリリファレンス>クラス>FrameFilter>FrameFilter.GetBoolParameter Method に渡さなければなりません。 |
getFunc | 現在のパラメータの設定値を返す働きをGetBoolParamが委譲します。 |
setFunc | パラメータの変更と扱いに関しての処理をSetBoolParamが委譲します。 |
備考
フレームフィルタの全パラメータをコンストラクタ内に登録する必要があります
サンプル
パラメータの登録方法に関してはAddIntParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddIntParam Methodをご参照ください。
関連項目
FrameFilterImplクラスライブラリリファレンス>クラス>FrameFilterImpl, FrameFilterImpl.AddIntParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddIntParam Method, AddFloatParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddFloatParam Method, AddStringParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddStringParam Method, AddDataParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddDataParam Method