ArcGISRuntimeXamarin.Samples.DisplayLayerViewState.LayerViewStatusTableSource.RowsInSection C# (CSharp) Méthode

RowsInSection() public méthode

Called by the TableView to determine how many cells to create for that particular section.
public RowsInSection ( UITableView tableview, nint section ) : nint
tableview UITableView
section nint
Résultat nint
        public override nint RowsInSection(UITableView tableview, nint section)
        {
            return _layers != null?_layers.Count:0;
        }