MonoMobile.Views.BaseDialogViewSource.TitleForFooter C# (CSharp) Méthode

TitleForFooter() public méthode

public TitleForFooter ( UITableView tableView, int sectionIndex ) : string
tableView UITableView
sectionIndex int
Résultat string
		public override string TitleForFooter(UITableView tableView, int sectionIndex)
		{
			if (Sections.Count > sectionIndex && Sections.ContainsKey(sectionIndex))
			{
				var section = Sections[sectionIndex];
				if (section != null)
				{
					return section.FooterText;
				}
			}
		
			return string.Empty;
		}