共用方式為


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
)

參數

  • 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 安全性

請參閱

參考

TextSelection 介面

EnvDTE 命名空間