TextSelection.StartOfDocument メソッド
カーソル位置をドキュメントの先頭に移動します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
Sub StartOfDocument ( _
Extend As Boolean _
)
void StartOfDocument(
bool Extend
)
void StartOfDocument(
[InAttribute] bool Extend
)
abstract StartOfDocument :
Extend:bool -> unit
function StartOfDocument(
Extend : boolean
)
パラメーター
- Extend
型 : System.Boolean
省略可能です。カーソルの現在の位置とドキュメントの先頭の間にあるテキストを強調表示するかどうかを決定します。既定値 false です。
例
Sub StartOfDocumentExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Move to the beginning of the document so we can iterate over the
' whole thing.
objSel.StartOfDocument()
While objSel.FindPattern("#if _DEBUG")
' If we found the beginning of a debug-only section, save the
' position.
Dim lStartLine As Long = objSel.TopPoint.Line
Dim lStartColumn As Long = objSel.TopPoint.LineCharOffset
' Look for the end.
If objSel.FindPattern("#endif") Then
' Select the entire section and outline it.
objSel.SwapAnchor()
objSel.MoveToLineAndOffset(lStartLine, lStartColumn, True)
objSel.OutlineSection()
objSel.LineDown()
End If
End While
End Sub
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。