SelectionItemPattern.Pattern Pole
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Identifikuje SelectionItemPattern vzor ovládacího prvku.
public: static initonly System::Windows::Automation::AutomationPattern ^ Pattern;
public static readonly System.Windows.Automation.AutomationPattern Pattern;
staticval mutable Pattern : System.Windows.Automation.AutomationPattern
Public Shared ReadOnly Pattern As AutomationPattern
Hodnota pole
Příklady
V následujícím příkladu se z objektu SelectionItemPattern AutomationElement.
///--------------------------------------------------------------------
/// <summary>
/// Obtains a SelectionItemPattern control pattern from an
/// automation element.
/// </summary>
/// <param name="targetControl">
/// The automation element of interest.
/// </param>
/// <returns>
/// A SelectionItemPattern object.
/// </returns>
///--------------------------------------------------------------------
private SelectionItemPattern GetSelectionItemPattern(
AutomationElement targetControl)
{
SelectionItemPattern selectionItemPattern = null;
try
{
selectionItemPattern =
targetControl.GetCurrentPattern(
SelectionItemPattern.Pattern)
as SelectionItemPattern;
}
// Object doesn't support the
// SelectionItemPattern control pattern
catch (InvalidOperationException)
{
return null;
}
return selectionItemPattern;
}
'''--------------------------------------------------------------------
''' <summary>
''' Obtains a SelectionItemPattern control pattern from an
''' automation element.
''' </summary>
''' <param name="targetControl">
''' The automation element of interest.
''' </param>
''' <returns>
''' A SelectionItemPattern object.
''' </returns>
'''--------------------------------------------------------------------
Private Function GetSelectionItemPattern( _
ByVal targetControl As AutomationElement) As SelectionItemPattern
Dim selectionItemPattern As SelectionItemPattern = Nothing
Try
selectionItemPattern = DirectCast( _
targetControl.GetCurrentPattern(selectionItemPattern.Pattern), _
SelectionItemPattern)
Catch
' Object doesn't support the SelectionItemPattern control pattern
Return Nothing
End Try
Return selectionItemPattern
End Function 'GetSelectionItemPattern
Poznámky
Tento identifikátor používá model UI Automation klientských aplikací. model UI Automation poskytovatelé by měli použít ekvivalentní pole v SelectionItemPatternIdentifierspoli .
Identifikátor vzoru se předává metodám, jako GetCurrentPattern je načtení ovládacího vzoru zájmu ze zadaného AutomationElement.