GridItemPattern.RowProperty Pole
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Identyfikuje Row właściwość .
public: static initonly System::Windows::Automation::AutomationProperty ^ RowProperty;
public static readonly System.Windows.Automation.AutomationProperty RowProperty;
staticval mutable RowProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly RowProperty As AutomationProperty
Wartość pola
Przykłady
W poniższym przykładzie GridItemPattern obiekt uzyskany z kontrolki docelowej jest przekazywany do funkcji, która pobiera bieżące GridItemPattern wartości właściwości.
///--------------------------------------------------------------------
/// <summary>
/// Gets the current property values from target.
/// </summary>
/// <param name="gridItemPattern">
/// A GridItemPattern control pattern obtained from
/// an automation element representing a target control.
/// </param>
/// <param name="automationProperty">
/// The automation property of interest.
/// </param>
/// <returns>
/// An integer object representing the requested property value.
/// </returns>
///--------------------------------------------------------------------
private object GetGridItemProperties(
GridItemPattern gridItemPattern,
AutomationProperty automationProperty)
{
if (automationProperty.Id ==
GridItemPattern.ColumnProperty.Id)
{
return gridItemPattern.Current.Column;
}
if (automationProperty.Id ==
GridItemPattern.RowProperty.Id)
{
return gridItemPattern.Current.Row;
}
if (automationProperty.Id ==
GridItemPattern.ColumnSpanProperty.Id)
{
return gridItemPattern.Current.ColumnSpan;
}
if (automationProperty.Id ==
GridItemPattern.RowSpanProperty.Id)
{
return gridItemPattern.Current.RowSpan;
}
return null;
}
'''--------------------------------------------------------------------
''' <summary>
''' Gets the current property values from target.
''' </summary>
''' <param name="gridItemPattern">
''' A GridItemPattern control pattern obtained from
''' an automation element representing a target control.
''' </param>
''' <param name="automationProperty">
''' The automation property of interest.
''' </param>
''' <returns>
''' An integer object representing the requested property value.
''' </returns>
'''--------------------------------------------------------------------
Private Function GetGridItemProperties( _
ByVal gridItemPattern As GridItemPattern, _
ByVal automationProperty As AutomationProperty) As Object
If automationProperty.Id = gridItemPattern.ColumnProperty.Id Then
Return gridItemPattern.Current.Column
End If
If automationProperty.Id = gridItemPattern.RowProperty.Id Then
Return gridItemPattern.Current.Row
End If
If automationProperty.Id = gridItemPattern.ColumnSpanProperty.Id Then
Return gridItemPattern.Current.ColumnSpan
End If
If automationProperty.Id = gridItemPattern.RowSpanProperty.Id Then
Return gridItemPattern.Current.RowSpan
End If
Return Nothing
End Function 'GetGridItemProperties
Uwagi
Ten identyfikator jest używany przez aplikacje klienckie automatyzacja interfejsu użytkownika. automatyzacja interfejsu użytkownika dostawcy powinni użyć odpowiedniego pola w pliku GridItemPatternIdentifiers.