ArcGISRuntimeXamarin.Samples.DisplayLayerViewState.LayerViewStatusTableSource.RowsInSection C# (CSharp) 메소드

RowsInSection() 공개 메소드

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
리턴 nint
        public override nint RowsInSection(UITableView tableview, nint section)
        {
            return _layers != null?_layers.Count:0;
        }