TextBoxBase.GetPositionFromCharIndex(Int32) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
擷取控制項內指定之字元索引的位置。
public:
virtual System::Drawing::Point GetPositionFromCharIndex(int index);
public virtual System.Drawing.Point GetPositionFromCharIndex (int index);
abstract member GetPositionFromCharIndex : int -> System.Drawing.Point
override this.GetPositionFromCharIndex : int -> System.Drawing.Point
Public Overridable Function GetPositionFromCharIndex (index As Integer) As Point
參數
- index
- Int32
要擷取位置的字元索引。
傳回
控制項之用戶端矩形內指定字元的位置。
備註
這個方法可讓您判斷控制項中特定字元索引的位置。 您可以針對這類工作使用這個方法,例如顯示控制項中單字的快捷方式功能表項目或說明資訊。 例如,如果您想要在使用者以滑鼠右鍵按一下控制項中的單字時向使用者顯示選項功能表,您可以使用此方法來判斷文字的位置,以正確顯示 ContextMenu 控制項。