TextBox.GetRectFromCharacterIndex 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回位於所指定索引之字元邊緣的周框。
多載
GetRectFromCharacterIndex(Int32) |
傳回位於所指定索引之字元前端邊緣的周框。 |
GetRectFromCharacterIndex(Int32, Boolean) |
傳回位於所指定索引之字元前端或尾端邊緣的周框。 |
GetRectFromCharacterIndex(Int32)
傳回位於所指定索引之字元前端邊緣的周框。
public:
System::Windows::Rect GetRectFromCharacterIndex(int charIndex);
public System.Windows.Rect GetRectFromCharacterIndex (int charIndex);
member this.GetRectFromCharacterIndex : int -> System.Windows.Rect
Public Function GetRectFromCharacterIndex (charIndex As Integer) As Rect
參數
- charIndex
- Int32
字元的以零起始的字元索引,要為此字元擷取周框。
傳回
位於所指定字元索引之字元前端邊緣的周框。如果無法判斷周框,則為 Empty。
備註
因為這個方法會傳回代表字元邊緣的矩形,所以矩形的寬度是 0。
適用於
GetRectFromCharacterIndex(Int32, Boolean)
傳回位於所指定索引之字元前端或尾端邊緣的周框。
public:
System::Windows::Rect GetRectFromCharacterIndex(int charIndex, bool trailingEdge);
public System.Windows.Rect GetRectFromCharacterIndex (int charIndex, bool trailingEdge);
member this.GetRectFromCharacterIndex : int * bool -> System.Windows.Rect
Public Function GetRectFromCharacterIndex (charIndex As Integer, trailingEdge As Boolean) As Rect
參數
- charIndex
- Int32
字元的以零起始的字元索引,要為此字元擷取周框。
- trailingEdge
- Boolean
true
表示取得字元的尾端邊緣,false
表示取得字元的前端邊緣。
傳回
位於所指定字元索引之字元邊緣的周框,如果無法判斷周框,則為 Empty。
例外狀況
charIndex
為負值或大於內容的長度。
備註
因為這個方法會傳回代表字元邊緣的矩形,所以矩形的寬度是 0。