TextSelection.GotoLine Yöntem
Belirtilen satırın başlangıcını taşır ve istenirse satırı seçer.
Ad alanı: EnvDTE
Derleme: EnvDTE (EnvDTE.dll içinde)
Sözdizimi
'Bildirim
Sub GotoLine ( _
Line As Integer, _
Select As Boolean _
)
void GotoLine(
int Line,
bool Select
)
void GotoLine(
[InAttribute] int Line,
[InAttribute] bool Select
)
abstract GotoLine :
Line:int *
Select:bool -> unit
function GotoLine(
Line : int,
Select : boolean
)
Parametreler
- Line
Tür: System.Int32
Gerekli.Satır numarası, gitmek için tek tek başlayarak.
- Select
Tür: System.Boolean
İsteğe Bağlı.Hedef satırı seçili olup olmadığını gösterir.Varsayılan, false değeridir.
Notlar
GotoLineaynı etkiye sahiptir TextSelection.MoveToLineAndOffset(Line, 0, False). If Select is true, then GotoLine also performs EndOfLine(True).
Örnekler
Sub GotoLineExample()
' Before running this example, open a text document.
Dim objSel As TextSelection = DTE.ActiveDocument.Selection
' Go to first line in document and select it.
objSel.GotoLine(1, True)
End Sub
.NET Framework Güvenliği
- Anında arayanlar için tam güven. Bu üye kısmen güvenilen kodla kullanılamaz. Daha fazla bilgi için bkz. Kısmen güvenilen kod kitaplıklarını kullanma.