FrameFilterImpl.AddStringParam Method

FrameFilterクラスライブラリリファレンス>クラス>FrameFilterのメソッドを使ってアクセスできるstring(文字列型)パラメータの登録を行います。

構文

[C#]
public delegate void SetStringParam( String value );
public delegate String GetStringParam();
protected void AddStringParam( string name, SetStringParam setFunc, GetStringParam getFunc );
パラメータ 説明
name パラメータの名前です。アクセスするためには文字列をFrameFilter.SetStringParameterクラスライブラリリファレンス>クラス>FrameFilter>FrameFilter.SetStringParameter MethodFrameFilter.GetStringParameterクラスライブラリリファレンス>クラス>FrameFilter>FrameFilter.GetStringParameter Methodに渡さなければなりません。
getFunc 現在のパラメータの設定値を返す働きをGetStringParamが委譲します。
setFunc パラメータの変更と扱いに関しての処理をSetStringParamが委譲します。

備考

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

サンプル