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 MethodFrameFilter.GetBoolParameterクラスライブラリリファレンス>クラス>FrameFilter>FrameFilter.GetBoolParameter Method に渡さなければなりません。
getFunc 現在のパラメータの設定値を返す働きをGetBoolParamが委譲します。
setFunc パラメータの変更と扱いに関しての処理をSetBoolParamが委譲します。

備考

フレームフィルタの全パラメータをコンストラクタ内に登録する必要があります

サンプル