TextSelection.MoveToDisplayColumn 方法
將作用點移至指定的顯示欄。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
Sub MoveToDisplayColumn ( _
Line As Integer, _
Column As Integer, _
Extend As Boolean _
)
void MoveToDisplayColumn(
int Line,
int Column,
bool Extend
)
void MoveToDisplayColumn(
[InAttribute] int Line,
[InAttribute] int Column,
[InAttribute] bool Extend
)
abstract MoveToDisplayColumn :
Line:int *
Column:int *
Extend:bool -> unit
function MoveToDisplayColumn(
Line : int,
Column : int,
Extend : boolean
)
參數
- Line
型別:System.Int32
必要項。代表由緩衝區開頭從 1 開始的行位移的 vsGoToLineOptions 常數。
- Column
型別:System.Int32
必要項。代表新欄位置的虛擬顯示欄,從 1 開始。
- Extend
型別:System.Boolean
選擇項。判斷移動的文字是否折疊。預設值為 false。
備註
MoveToDisplayColumn 會將選取的文字移至指定的行和欄。 如果欄位移是在行的某個定位點字元上,則作用點會移至剛好在定位點前面的位置上。
如果 Line 或 Column 的值為零,則作用點會保持在目前的行號和 (或) 欄數。
範例
Sub MoveToDisplayColumnExample()
' 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 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。