TextPattern.SupportedTextSelection プロパティ

定義

テキスト プロバイダーが選択をサポートするかどうかを指定する値を取得し、選択をサポートする場合はサポートされる選択の種類を取得します。

public:
 property System::Windows::Automation::SupportedTextSelection SupportedTextSelection { System::Windows::Automation::SupportedTextSelection get(); };
public System.Windows.Automation.SupportedTextSelection SupportedTextSelection { get; }
member this.SupportedTextSelection : System.Windows.Automation.SupportedTextSelection
Public ReadOnly Property SupportedTextSelection As SupportedTextSelection

プロパティ値

SupportedTextSelection 値のいずれか 1 つ。

// Does target range support text selection?
if (targetTextPattern.SupportedTextSelection ==
    SupportedTextSelection.None)
{
    targetResult.Content = "Unable to select text.";
    targetResult.Background = Brushes.Salmon;
    return;
}
// Does target range support multiple selections?
if (targetTextPattern.SupportedTextSelection ==
    SupportedTextSelection.Multiple)
{
    targetResult.Content = "Multiple selections present.";
    targetResult.Background = Brushes.Salmon;
    return;
}
' Does target range support text selection?
If targetTextPattern.SupportedTextSelection = SupportedTextSelection.None Then
    targetResult.Content = "Unable to select text."
    targetResult.Background = Brushes.Salmon
    Return
End If
' Does target range support multiple selections?
If targetTextPattern.SupportedTextSelection = SupportedTextSelection.Multiple Then
    targetResult.Content = "Multiple selections present."
    targetResult.Background = Brushes.Salmon
    Return
End If

適用対象

こちらもご覧ください