Win32 API 日本語リファレンス
ホームWeb.MsHtml › ISVGPatternElement

ISVGPatternElement

COMIDispatch (デュアル)
IDispatch を実装(デュアルインターフェース)。HSP では comobj 経由でメソッド名による遅延バインド呼び出しができます(vtableインデックス不要)。
IID3051052c-98b5-11cf-bb82-00aa00bdce0b継承元IDispatch呼び出し名前(IDispatch) または vtbl自前メソッド開始 vtbl7

メソッド 14

vtbl = vtable インデックス(0始まり)。IDispatch 実装のため HSP ではメソッド名でも呼べます(上記)。低レベルの index 呼び出し用に vtbl も掲載。0〜2 は IUnknown。

vtbl 7 HRESULT putref_patternUnits(ISVGAnimatedEnumeration* v)
vISVGAnimatedEnumeration*inpatternUnits 属性(パターンの座標系の単位)を表す ISVGAnimatedEnumeration への参照を設定する。
vtbl 8 HRESULT get_patternUnits(ISVGAnimatedEnumeration** p)
pISVGAnimatedEnumeration**outpatternUnits 属性(パターンの座標系の単位)を表す ISVGAnimatedEnumeration を受け取る出力ポインタである。
vtbl 9 HRESULT putref_patternContentUnits(ISVGAnimatedEnumeration* v)
vISVGAnimatedEnumeration*inpatternContentUnits 属性(パターン内容の座標系の単位)を表す ISVGAnimatedEnumeration への参照を設定する。
vtbl 10 HRESULT get_patternContentUnits(ISVGAnimatedEnumeration** p)
pISVGAnimatedEnumeration**outpatternContentUnits 属性(パターン内容の座標系の単位)を表す ISVGAnimatedEnumeration を受け取る出力ポインタである。
vtbl 11 HRESULT putref_patternTransform(ISVGAnimatedTransformList* v)
vISVGAnimatedTransformList*inpatternTransform 属性(パターンに適用される変換のリスト)を表す ISVGAnimatedTransformList への参照を設定する。
vtbl 12 HRESULT get_patternTransform(ISVGAnimatedTransformList** p)
pISVGAnimatedTransformList**outpatternTransform 属性(パターンに適用される変換のリスト)を表す ISVGAnimatedTransformList を受け取る出力ポインタである。
vtbl 13 HRESULT putref_x(ISVGAnimatedLength* v)
vISVGAnimatedLength*inパターンタイルの左上隅の x 座標を表す ISVGAnimatedLength への参照を設定する。
vtbl 14 HRESULT get_x(ISVGAnimatedLength** p)
pISVGAnimatedLength**outパターンタイルの左上隅の x 座標を表す ISVGAnimatedLength を受け取る出力ポインタである。
vtbl 15 HRESULT putref_y(ISVGAnimatedLength* v)
vISVGAnimatedLength*inパターンタイルの左上隅の y 座標を表す ISVGAnimatedLength への参照を設定する。
vtbl 16 HRESULT get_y(ISVGAnimatedLength** p)
pISVGAnimatedLength**outパターンタイルの左上隅の y 座標を表す ISVGAnimatedLength を受け取る出力ポインタである。
vtbl 17 HRESULT putref_width(ISVGAnimatedLength* v)
vISVGAnimatedLength*inパターンタイルの幅を表す ISVGAnimatedLength への参照を設定する。
vtbl 18 HRESULT get_width(ISVGAnimatedLength** p)
pISVGAnimatedLength**outパターンタイルの幅を表す ISVGAnimatedLength を受け取る出力ポインタである。
vtbl 19 HRESULT putref_height(ISVGAnimatedLength* v)
vISVGAnimatedLength*inパターンタイルの高さを表す ISVGAnimatedLength への参照を設定する。
vtbl 20 HRESULT get_height(ISVGAnimatedLength** p)
pISVGAnimatedLength**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 不要)。