共用方式為


TextSelection.CharRight 方法

將物件向右移動指定的字元數。

命名空間:  EnvDTE
組件:  EnvDTE (在 EnvDTE.dll 中)

語法

'宣告
Sub CharRight ( _
    Extend As Boolean, _
    Count As Integer _
)
void CharRight(
    bool Extend,
    int Count
)
void CharRight(
    [InAttribute] bool Extend, 
    [InAttribute] int Count
)
abstract CharRight : 
        Extend:bool * 
        Count:int -> unit
function CharRight(
    Extend : boolean, 
    Count : int
)

參數

  • Extend
    類型:Boolean

    選擇項。 判斷移動的文字是否折疊。 預設值為 false。

  • Count
    類型:Int32

    選擇項。 代表要向右移動的字元數。 預設值為 1。

備註

如果 Extend 是 true,則文字選取範圍的作用端點會向右移動個 Count 字元。 否則,選取文字的作用端點右邊會被摺疊並且置於的 Count 字元。

如果還沒有移動到 Count 指定的字元數就碰到了文件的結尾,則位置就會留在文件的結尾。 如果作用端點是在一行的結尾,則 CharLeft 會使它位於下一行的開頭。 也就是說,所有新行順序都會被視為單一字元。

如果 Count 是負數,則 CharRight 動作就會和 CharLeft 方法相同。

範例

Sub CharRightExample()
   ' Open a document before running this example.
   Dim objSel As TextSelection = DTE.ActiveDocument.Selection
   objSel.StartOfDocument(True)
   objSel.StartOfLine(vsStartOfLineOptions.vsStartOfLineOptionsFirstText)
   objSel.CharRight(True, 4)
   objSel.ChangeCase(vsCaseOptions.vsCaseOptionsUppercase)
   MsgBox("Turned text uppercase.")
   objSel.CharLeft(False, 1)
   objSel.ChangeCase(vsCaseOptions.vsCaseOptionsLowercase)
   MsgBox("Turned text lowercase.")
End Sub

.NET Framework 安全性

請參閱

參考

TextSelection 介面

EnvDTE 命名空間