外部インタフェース/API | ![]() ![]() |
表示
set (a [, 'propertyname' [, value [, arg1, arg2, ...]]])
引数
a
actxcontrol
, actxserver
, get
, invoke
によって出力されたactivexオブジェクトのハンドル。
arg1, ..., argn
出力
詳細
インタフェースのプロパティを特定の値に設定します。ワークスペース行列のActiveXデータタイプへの変換方法に関する情報は、「データ変換」を参照してください。
例題
f = figure ('pos', [100 200 200 200]); % Create the control to fill the figure. a = actxcontrol ('MWSAMP.MwsampCtrl.1', [0 0 200 200], f) set (a, 'Label', 'Click to fire event'); set (a, 'Radius', 40); invoke (a, 'Redraw');
![]() | send | Writing Event Handlers | ![]() |