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