MonoTouch.Dialog.DialogViewController.Source.GetHeightForFooter C# (CSharp) Method

GetHeightForFooter() public method

public GetHeightForFooter ( UITableView tableView, int sectionIdx ) : float
tableView UITableView
sectionIdx int
return float
			public override float GetHeightForFooter (UITableView tableView, int sectionIdx)
			{
				var section = Root.Sections [sectionIdx];
				if (section.FooterView == null)
					return -1;
				return section.FooterView.Frame.Height;
			}