TextSelection.MoveToAbsoluteOffset 方法
將作用點移至指定的以 1 起始的絕對字元位移數。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Sub MoveToAbsoluteOffset ( _
Offset As Integer, _
Extend As Boolean _
)
void MoveToAbsoluteOffset(
int Offset,
bool Extend
)
void MoveToAbsoluteOffset(
[InAttribute] int Offset,
[InAttribute] bool Extend
)
abstract MoveToAbsoluteOffset :
Offset:int *
Extend:bool -> unit
function MoveToAbsoluteOffset(
Offset : int,
Extend : boolean
)
參數
- Offset
型別:System.Int32
必要項。文件起始的字元索引,從 1 開始。
- Extend
型別:System.Boolean
選擇項。預設值 = false。用來擴充目前選取範圍的布林值。如果 Extend 為 true,那麼錨定終點保留在原來的位置時,選取範圍的作用端點會移至這個位置。否則,兩端都會移動至指定的位置。這個引數只可套用至 TextSelection 物件。
範例
Sub MoveToAbsoluteOffsetExample()
' 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)
' Move to various lines and offsets (character columns).
objSel.MoveToAbsoluteOffset(3, True)
objSel.MoveToDisplayColumn(3, True)
End Sub
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。