ITextProvider.GetSelection 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 a collection of disjoint text ranges associated with the current text selection or selections.
public:
cli::array <System::Windows::Automation::Provider::ITextRangeProvider ^> ^ GetSelection();
public System.Windows.Automation.Provider.ITextRangeProvider[] GetSelection ();
abstract member GetSelection : unit -> System.Windows.Automation.Provider.ITextRangeProvider[]
Public Function GetSelection () As ITextRangeProvider()
Returns
A collection of disjoint text ranges.
Exceptions
If the UI Automation provider does not support text selection.
Remarks
For UI Automation providers that support text selection, the provider should implement this method and also return a SupportedTextSelection value.
If no text is selected, GetSelection returns the degenerate text range (empty range) at the position of the system cursor (text insertion point).
If the system cursor (text insertion point) is not present, GetSelection may return a null reference (Nothing
in Visual Basic).