TablePattern.TablePatternInformation.RowCount Vlastnost
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í.
Získá celkový počet řádků v tabulce.
public:
property int RowCount { int get(); };
public int RowCount { get; }
member this.RowCount : int
Public ReadOnly Property RowCount As Integer
Hodnota vlastnosti
Celkový počet řádků v tabulce Výchozí hodnota je nula.
Příklady
V následujícím příkladu TablePattern se objekt získaný z cílového ovládacího prvku předá funkci, která načte aktuální TablePattern hodnoty vlastnosti.
///--------------------------------------------------------------------
/// <summary>
/// Gets the current property values from target.
/// </summary>
/// <param name="tablePattern">
/// A TablePattern control pattern obtained from
/// an automation element representing a target control.
/// </param>
///--------------------------------------------------------------------
private void GetRowColumnCounts(TablePattern tablePattern)
{
if (tablePattern == null)
{
throw new ArgumentException("Target element cannot be null.");
}
Console.WriteLine(tablePattern.Current.RowCount.ToString());
Console.WriteLine(tablePattern.Current.ColumnCount.ToString());
}
'''--------------------------------------------------------------------
''' <summary>
''' Gets the current property values from target.
''' </summary>
''' <param name="tablePattern">
''' A TablePattern control pattern obtained from
''' an automation element representing a target control.
''' </param>
'''--------------------------------------------------------------------
Private Sub GetRowColumnCounts(ByVal tablePattern As TablePattern)
If tablePattern Is Nothing Then
Throw New ArgumentException("Target element cannot be null.")
End If
Console.WriteLine(tablePattern.Current.RowCount.ToString())
Console.WriteLine(tablePattern.Current.ColumnCount.ToString())
End Sub