IVsTextView.GetPointOfLineColumn 方法
傳回特定的行和資料行的左上角的座標。
命名空間: Microsoft.VisualStudio.TextManager.Interop
組件: Microsoft.VisualStudio.TextManager.Interop (在 Microsoft.VisualStudio.TextManager.Interop.dll 中)
語法
'宣告
Function GetPointOfLineColumn ( _
iLine As Integer, _
iCol As Integer, _
<OutAttribute> ppt As POINT() _
) As Integer
int GetPointOfLineColumn(
int iLine,
int iCol,
POINT[] ppt
)
int GetPointOfLineColumn(
[InAttribute] int iLine,
[InAttribute] int iCol,
[OutAttribute] array<POINT>^ ppt
)
abstract GetPointOfLineColumn :
iLine:int *
iCol:int *
ppt:POINT[] byref -> int
function GetPointOfLineColumn(
iLine : int,
iCol : int,
ppt : POINT[]
) : int
參數
iLine
類型:Int32[in]整數,其中包含的行索引。
iCol
類型:Int32[in]整數,其中包含的資料行索引。 Viewcol 座標可能包括虛擬空間。
ppt
類型:array<POINT[][retval] out結構定義線條的左上角 x 和 y 座標。 如需詳細資訊,請參閱 Platform sdk 》 中的點。
傳回值
類型:Int32
如果此方法將會成功,則會傳回S_OK。如果失敗,它就會傳回錯誤碼。
備註
COM 簽章
從 textmgr.idl:
HRESULT IVsTextView::GetPointOfLineColumn(
[in] long iLine,
[in] ViewCol iCol,
[out, retval] POINT * ppt
);
使用此方法來判斷座標 (以像素為單位) 的左上角的的行和資料行。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。