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 Method か FrameFilter.GetStringParameterクラスライブラリリファレンス>クラス>FrameFilter>FrameFilter.GetStringParameter Methodに渡さなければなりません。 |
getFunc | 現在のパラメータの設定値を返す働きをGetStringParamが委譲します。 |
setFunc | パラメータの変更と扱いに関しての処理をSetStringParamが委譲します。 |
備考
フレームフィルタの全パラメータをコンストラクタ内に登録する必要があります。
サンプル
パラメータの登録方法に関してはAddIntParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddIntParam Methodをご参照ください。
関連項目
FrameFilterImplクラスライブラリリファレンス>クラス>FrameFilterImpl, FrameFilterImpl.AddBoolParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddBoolParam Method, FrameFilterImpl.AddIntParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddIntParam Method, FrameFilterImpl.AddFloatParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddFloatParam Method, FrameFilterImpl.AddDataParamクラスライブラリリファレンス>クラス>FrameFilterImpl>FrameFilterImpl.AddDataParam Method