IVsTextStreamMarker.DrawGlyph 方法
指定顯示內容和週框的 widget 邊界會以圖像 (glyph)。
命名空間: Microsoft.VisualStudio.TextManager.Interop
組件: Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
語法
'宣告
Function DrawGlyph ( _
hdc As IntPtr, _
pRect As RECT() _
) As Integer
int DrawGlyph(
IntPtr hdc,
RECT[] pRect
)
int DrawGlyph(
[InAttribute] IntPtr hdc,
[InAttribute] array<RECT>^ pRect
)
abstract DrawGlyph :
hdc:IntPtr *
pRect:RECT[] -> int
function DrawGlyph(
hdc : IntPtr,
pRect : RECT[]
) : int
參數
hdc
類型:IntPtr[in]定義想要的圖像 (glyph) 進行的可見區域的顯示裝置內容的控制代碼。
pRect
類型:array<RECT[][in]指標 RECT 結構中定義的圖像 (glyph),這個界限矩形左上角和右下角的座標。
傳回值
類型:Int32
如果此方法將會成功,則會傳回S_OK。如果失敗,它就會傳回錯誤碼。
備註
COM 簽章
從 textmgr.idl:
HRESULT IVsTextStreamMarker::DrawGlyph(
[in] HDC hdc,
[in] RECT *pRect
);
只由核心文字編輯器來繪製 widget 邊界中的資料標記的圖像 (glyph) 通常呼叫這個方法。 圖像 (glyph) 的範例包括箭號和中斷點。 在核心文字編輯器的 widget 邊界內繪製圖像 (glyph)。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。