RichTextBox.GetPositionFromCharIndex(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the location within the control at the specified character index.
public:
System::Drawing::Point GetPositionFromCharIndex(int index);
public:
override System::Drawing::Point GetPositionFromCharIndex(int index);
public System.Drawing.Point GetPositionFromCharIndex (int index);
public override System.Drawing.Point GetPositionFromCharIndex (int index);
member this.GetPositionFromCharIndex : int -> System.Drawing.Point
override this.GetPositionFromCharIndex : int -> System.Drawing.Point
Public Function GetPositionFromCharIndex (index As Integer) As Point
Public Overrides Function GetPositionFromCharIndex (index As Integer) As Point
Parameters
- index
- Int32
The index of the character for which to retrieve the location.
Returns
The location of the specified character.
Remarks
This method enables you to determine where in the control a specific character index is located. You can use this method for such tasks as displaying shortcut menu items or help information for a word in the control. For example, if you wanted to display a menu of options to the user when the user right clicks on a word in the control, you can use this method to determine the position of the word to properly display a ContextMenu control.