IVsTextLines.CreateLineMarker 메서드
특정 유형의 마커를 통해 지정 된 영역을 만듭니다.
네임스페이스: Microsoft.VisualStudio.TextManager.Interop
어셈블리: Microsoft.VisualStudio.TextManager.Interop(Microsoft.VisualStudio.TextManager.Interop.dll)
구문
‘선언
Function CreateLineMarker ( _
iMarkerType As Integer, _
iStartLine As Integer, _
iStartIndex As Integer, _
iEndLine As Integer, _
iEndIndex As Integer, _
pClient As IVsTextMarkerClient, _
<OutAttribute> ppMarker As IVsTextLineMarker() _
) As Integer
int CreateLineMarker(
int iMarkerType,
int iStartLine,
int iStartIndex,
int iEndLine,
int iEndIndex,
IVsTextMarkerClient pClient,
IVsTextLineMarker[] ppMarker
)
int CreateLineMarker(
[InAttribute] int iMarkerType,
[InAttribute] int iStartLine,
[InAttribute] int iStartIndex,
[InAttribute] int iEndLine,
[InAttribute] int iEndIndex,
[InAttribute] IVsTextMarkerClient^ pClient,
[OutAttribute] array<IVsTextLineMarker^>^ ppMarker
)
abstract CreateLineMarker :
iMarkerType:int *
iStartLine:int *
iStartIndex:int *
iEndLine:int *
iEndIndex:int *
pClient:IVsTextMarkerClient *
ppMarker:IVsTextLineMarker[] byref -> int
function CreateLineMarker(
iMarkerType : int,
iStartLine : int,
iStartIndex : int,
iEndLine : int,
iEndIndex : int,
pClient : IVsTextMarkerClient,
ppMarker : IVsTextLineMarker[]
) : int
매개 변수
iMarkerType
형식: Int32[in] 형식 마커를 만들 수 있습니다.
iStartLine
형식: Int32[in] 시작 줄입니다.
iStartIndex
형식: Int32[in] 시작 문자 줄 내의 인덱스입니다. 줄의 길이 보다 작거나 있어야 합니다.
iEndLine
형식: Int32[in] 선을 끝입니다.
iEndIndex
형식: Int32[in] 줄 끝 문자 인덱스입니다. 줄의 길이 보다 작거나 있어야 합니다.
pClient
형식: Microsoft.VisualStudio.TextManager.Interop.IVsTextMarkerClient[in] 에 대 한 포인터를 IVsTextMarkerClient 인터페이스입니다. 표식 이벤트에 대 한 알림을 받으려는 텍스트 버퍼에 게 알리기 위해이 인터페이스를 구현 합니다.
ppMarker
형식: array<Microsoft.VisualStudio.TextManager.Interop.IVsTextLineMarker[][out] 에 대 한 포인터를 IVsTextLineMarker 인터페이스 (예: 텍스트 마커). 이 매개 변수가 nullNull 참조(Visual Basic의 경우 Nothing), 마커 텍스트 버퍼에서 소유 하 고 있습니다. 버퍼 소유 표식의 예 임시 책갈피입니다.
반환 값
형식: Int32
메서드가 성공 하면, 반환 S_OK.실패할 경우 오류 코드를 반환합니다.
설명
COM 시그니처
Textmgr.idl에서:
HRESULT IVsTextLines::CreateLineMarker(
[in] long iMarkerType,
[in] long iStartLine,
[in] CharIndex iStartIndex,
[in] long iEndLine,
[in] CharIndex iEndIndex,
[in] IVsTextMarkerClient * pClient,
[out] IVsTextLineMarker ** ppMarker
);
이 메서드 마커를 통해 지정 된 영역을 만듭니다. 버퍼에 대 한 표식 이벤트를 수신 하려는 경우 다음에 대 한 포인터 전달의 IVsTextMarkerClient 의 인터페이스는 pClient 매개 변수.
참고
마커를 사용 하 여 만든 IVsTextLines.CreateLineMarker 마커 행 방향으로 나열 됩니다.사용 CreateStreamMarker 스트림 지향 마커를 만들 수 있습니다.
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용를 참조하세요.