IVsTextMarkerGlyphDropHandler.DropAtLocation 方法
可告知用戶端處理置放在指定位置的圖像 (glyph)。
命名空間: Microsoft.VisualStudio.TextManager.Interop
組件: Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
語法
'宣告
Function DropAtLocation ( _
dwReserved As UInteger, _
pDestView As IVsTextView, _
pDestBuffer As IVsTextLines, _
iLine As Integer, _
iIndex As Integer, _
<OutAttribute> ByRef pdwDropResult As UInteger _
) As Integer
int DropAtLocation(
uint dwReserved,
IVsTextView pDestView,
IVsTextLines pDestBuffer,
int iLine,
int iIndex,
out uint pdwDropResult
)
int DropAtLocation(
[InAttribute] unsigned int dwReserved,
[InAttribute] IVsTextView^ pDestView,
[InAttribute] IVsTextLines^ pDestBuffer,
[InAttribute] int iLine,
[InAttribute] int iIndex,
[OutAttribute] unsigned int% pdwDropResult
)
abstract DropAtLocation :
dwReserved:uint32 *
pDestView:IVsTextView *
pDestBuffer:IVsTextLines *
iLine:int *
iIndex:int *
pdwDropResult:uint32 byref -> int
function DropAtLocation(
dwReserved : uint,
pDestView : IVsTextView,
pDestBuffer : IVsTextLines,
iLine : int,
iIndex : int,
pdwDropResult : uint
) : int
參數
dwReserved
類型:UInt32[in]請勿使用。
pDestView
類型:Microsoft.VisualStudio.TextManager.Interop.IVsTextView[in][目的] 檢視的指標。 如需詳細資訊,請參閱 IVsTextView。
pDestBuffer
類型:Microsoft.VisualStudio.TextManager.Interop.IVsTextLines[in]目的緩衝區的指標。 如需詳細資訊,請參閱 IVsTextLines。
iLine
類型:Int32[in]文字緩衝區中的線條。
iIndex
類型:Int32[in]Char 文字緩衝區中的行內的索引位置。
pdwDropResult
類型:UInt32%[] out指示置放狀態。 結合使用位元或CUSTOM_DROP_HANDLER_FLAGS。
傳回值
類型:Int32
如果此方法將會成功,則會傳回S_OK。如果失敗,它就會傳回錯誤碼。
備註
COM 簽章
從 textmgr.idl:
HRESULT IVsTextMarkerGlyphDropHandler::DropAtLocation(
[in] DWORD dwReserved,
[in] IVsTextView *pDestView,
[in] IVsTextLines *pDestBuffer,
[in] long iLine,
[in] CharIndex iIndex,
[out] DWORD *pdwDropResult
);
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。