ホーム › Web.MsHtml › ISVGPatternElement
ISVGPatternElement
COMIDispatch (デュアル)✅ IDispatch を実装(デュアルインターフェース)。HSP では
comobj 経由でメソッド名による遅延バインド呼び出しができます(vtableインデックス不要)。メソッド 14
vtbl = vtable インデックス(0始まり)。IDispatch 実装のため HSP ではメソッド名でも呼べます(上記)。低レベルの index 呼び出し用に vtbl も掲載。0〜2 は IUnknown。
vtbl 7 HRESULT putref_patternUnits(ISVGAnimatedEnumeration* v)
| v | ISVGAnimatedEnumeration* | in | patternUnits 属性(パターンの座標系の単位)を表す ISVGAnimatedEnumeration への参照を設定する。 |
vtbl 8 HRESULT get_patternUnits(ISVGAnimatedEnumeration** p)
| p | ISVGAnimatedEnumeration** | out | patternUnits 属性(パターンの座標系の単位)を表す ISVGAnimatedEnumeration を受け取る出力ポインタである。 |
vtbl 9 HRESULT putref_patternContentUnits(ISVGAnimatedEnumeration* v)
| v | ISVGAnimatedEnumeration* | in | patternContentUnits 属性(パターン内容の座標系の単位)を表す ISVGAnimatedEnumeration への参照を設定する。 |
vtbl 10 HRESULT get_patternContentUnits(ISVGAnimatedEnumeration** p)
| p | ISVGAnimatedEnumeration** | out | patternContentUnits 属性(パターン内容の座標系の単位)を表す ISVGAnimatedEnumeration を受け取る出力ポインタである。 |
vtbl 11 HRESULT putref_patternTransform(ISVGAnimatedTransformList* v)
| v | ISVGAnimatedTransformList* | in | patternTransform 属性(パターンに適用される変換のリスト)を表す ISVGAnimatedTransformList への参照を設定する。 |
vtbl 12 HRESULT get_patternTransform(ISVGAnimatedTransformList** p)
| p | ISVGAnimatedTransformList** | out | patternTransform 属性(パターンに適用される変換のリスト)を表す ISVGAnimatedTransformList を受け取る出力ポインタである。 |
vtbl 13 HRESULT putref_x(ISVGAnimatedLength* v)
| v | ISVGAnimatedLength* | in | パターンタイルの左上隅の x 座標を表す ISVGAnimatedLength への参照を設定する。 |
vtbl 14 HRESULT get_x(ISVGAnimatedLength** p)
| p | ISVGAnimatedLength** | out | パターンタイルの左上隅の x 座標を表す ISVGAnimatedLength を受け取る出力ポインタである。 |
vtbl 15 HRESULT putref_y(ISVGAnimatedLength* v)
| v | ISVGAnimatedLength* | in | パターンタイルの左上隅の y 座標を表す ISVGAnimatedLength への参照を設定する。 |
vtbl 16 HRESULT get_y(ISVGAnimatedLength** p)
| p | ISVGAnimatedLength** | out | パターンタイルの左上隅の y 座標を表す ISVGAnimatedLength を受け取る出力ポインタである。 |
vtbl 17 HRESULT putref_width(ISVGAnimatedLength* v)
| v | ISVGAnimatedLength* | in | パターンタイルの幅を表す ISVGAnimatedLength への参照を設定する。 |
vtbl 18 HRESULT get_width(ISVGAnimatedLength** p)
| p | ISVGAnimatedLength** | out | パターンタイルの幅を表す ISVGAnimatedLength を受け取る出力ポインタである。 |
vtbl 19 HRESULT putref_height(ISVGAnimatedLength* v)
| v | ISVGAnimatedLength* | in | パターンタイルの高さを表す ISVGAnimatedLength への参照を設定する。 |
vtbl 20 HRESULT get_height(ISVGAnimatedLength** p)
| p | ISVGAnimatedLength** | out | パターンタイルの高さを表す ISVGAnimatedLength を受け取る出力ポインタである。 |
HSP用 COM定義
#usecom / #comfunc によるHSPのCOM呼び出し定義。数字は vtbl インデックス(0始まり)。クラスIDが無い場合 #usecom の末尾は "{}"、ある場合は "{CLSID}"。
#define global IID_ISVGPatternElement "{3051052C-98B5-11CF-BB82-00AA00BDCE0B}"
#usecom global ISVGPatternElement IID_ISVGPatternElement "{}"
#comfunc global ISVGPatternElement_putref_patternUnits 7 sptr
#comfunc global ISVGPatternElement_get_patternUnits 8 sptr
#comfunc global ISVGPatternElement_putref_patternContentUnits 9 sptr
#comfunc global ISVGPatternElement_get_patternContentUnits 10 sptr
#comfunc global ISVGPatternElement_putref_patternTransform 11 sptr
#comfunc global ISVGPatternElement_get_patternTransform 12 sptr
#comfunc global ISVGPatternElement_putref_x 13 sptr
#comfunc global ISVGPatternElement_get_x 14 sptr
#comfunc global ISVGPatternElement_putref_y 15 sptr
#comfunc global ISVGPatternElement_get_y 16 sptr
#comfunc global ISVGPatternElement_putref_width 17 sptr
#comfunc global ISVGPatternElement_get_width 18 sptr
#comfunc global ISVGPatternElement_putref_height 19 sptr
#comfunc global ISVGPatternElement_get_height 20 sptr
; ※数字は vtbl インデックス(0始まり)。0/1/2 は IUnknown(QueryInterface/AddRef/Release)。
; ※このインターフェースは直接 CoCreateInstance するクラスIDが無いため "{}"(他メソッド/アクティベーションで取得)。
; ※ハンドル/void*等の不透明ポインタは IronHSP では intptr 指定が可能。
; ※IDispatch 実装。HSP では comobj 経由でメソッド名による呼び出しも可能(vtbl 不要)。