ホーム › Web.MsHtml › ISVGMaskElement
ISVGMaskElement
COMIDispatch (デュアル)✅ IDispatch を実装(デュアルインターフェース)。HSP では
comobj 経由でメソッド名による遅延バインド呼び出しができます(vtableインデックス不要)。メソッド 12
vtbl = vtable インデックス(0始まり)。IDispatch 実装のため HSP ではメソッド名でも呼べます(上記)。低レベルの index 呼び出し用に vtbl も掲載。0〜2 は IUnknown。
vtbl 7 HRESULT putref_maskUnits(ISVGAnimatedEnumeration* v)
| v | ISVGAnimatedEnumeration* | in | マスク領域の座標系を表す maskUnits 属性の値となる ISVGAnimatedEnumeration オブジェクトへのポインタを設定する。 |
vtbl 8 HRESULT get_maskUnits(ISVGAnimatedEnumeration** p)
| p | ISVGAnimatedEnumeration** | out | マスク領域の座標系を表す maskUnits 属性の値を保持する ISVGAnimatedEnumeration インターフェイスポインタを受け取る出力ポインタである。 |
vtbl 9 HRESULT putref_maskContentUnits(ISVGAnimatedEnumeration* v)
| v | ISVGAnimatedEnumeration* | in | マスク内容の座標系を表す maskContentUnits 属性の値となる ISVGAnimatedEnumeration オブジェクトへのポインタを設定する。 |
vtbl 10 HRESULT get_maskContentUnits(ISVGAnimatedEnumeration** p)
| p | ISVGAnimatedEnumeration** | out | マスク内容の座標系を表す maskContentUnits 属性の値を保持する ISVGAnimatedEnumeration インターフェイスポインタを受け取る出力ポインタである。 |
vtbl 11 HRESULT putref_x(ISVGAnimatedLength* v)
| v | ISVGAnimatedLength* | in | マスク領域の左上の X 座標を表す x 属性の値となる ISVGAnimatedLength オブジェクトへのポインタを設定する。 |
vtbl 12 HRESULT get_x(ISVGAnimatedLength** p)
| p | ISVGAnimatedLength** | out | マスク領域の左上の X 座標を表す x 属性の値を保持する ISVGAnimatedLength インターフェイスポインタを受け取る出力ポインタである。 |
vtbl 13 HRESULT putref_y(ISVGAnimatedLength* v)
| v | ISVGAnimatedLength* | in | マスク領域の左上の Y 座標を表す y 属性の値となる ISVGAnimatedLength オブジェクトへのポインタを設定する。 |
vtbl 14 HRESULT get_y(ISVGAnimatedLength** p)
| p | ISVGAnimatedLength** | out | マスク領域の左上の Y 座標を表す y 属性の値を保持する ISVGAnimatedLength インターフェイスポインタを受け取る出力ポインタである。 |
vtbl 15 HRESULT putref_width(ISVGAnimatedLength* v)
| v | ISVGAnimatedLength* | in | マスク領域の幅を表す width 属性の値となる ISVGAnimatedLength オブジェクトへのポインタを設定する。 |
vtbl 16 HRESULT get_width(ISVGAnimatedLength** p)
| p | ISVGAnimatedLength** | out | マスク領域の幅を表す width 属性の値を保持する ISVGAnimatedLength インターフェイスポインタを受け取る出力ポインタである。 |
vtbl 17 HRESULT putref_height(ISVGAnimatedLength* v)
| v | ISVGAnimatedLength* | in | マスク領域の高さを表す height 属性の値となる ISVGAnimatedLength オブジェクトへのポインタを設定する。 |
vtbl 18 HRESULT get_height(ISVGAnimatedLength** p)
| p | ISVGAnimatedLength** | out | マスク領域の高さを表す height 属性の値を保持する ISVGAnimatedLength インターフェイスポインタを受け取る出力ポインタである。 |
HSP用 COM定義
#usecom / #comfunc によるHSPのCOM呼び出し定義。数字は vtbl インデックス(0始まり)。クラスIDが無い場合 #usecom の末尾は "{}"、ある場合は "{CLSID}"。
#define global IID_ISVGMaskElement "{3051052E-98B5-11CF-BB82-00AA00BDCE0B}"
#usecom global ISVGMaskElement IID_ISVGMaskElement "{305105E7-98B5-11CF-BB82-00AA00BDCE0B}"
#comfunc global ISVGMaskElement_putref_maskUnits 7 sptr
#comfunc global ISVGMaskElement_get_maskUnits 8 sptr
#comfunc global ISVGMaskElement_putref_maskContentUnits 9 sptr
#comfunc global ISVGMaskElement_get_maskContentUnits 10 sptr
#comfunc global ISVGMaskElement_putref_x 11 sptr
#comfunc global ISVGMaskElement_get_x 12 sptr
#comfunc global ISVGMaskElement_putref_y 13 sptr
#comfunc global ISVGMaskElement_get_y 14 sptr
#comfunc global ISVGMaskElement_putref_width 15 sptr
#comfunc global ISVGMaskElement_get_width 16 sptr
#comfunc global ISVGMaskElement_putref_height 17 sptr
#comfunc global ISVGMaskElement_get_height 18 sptr
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※#usecom 末尾は CoCreateInstance 用のクラスID(コクラスCLSID, SDKから自動取得)。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。
; ※IDispatch 実装。HSP では comobj 経由でメソッド名による呼び出しも可能(vtbl 不要)。