MonoTouch.Dialog.MultilineElement.GetCell C# (CSharp) Method

GetCell() public method

public GetCell ( UITableView tv ) : UITableViewCell
tv UITableView
return UITableViewCell
		public override UITableViewCell GetCell (UITableView tv)
		{
			var cell = base.GetCell (tv);				
			var tl = cell.TextLabel;
			tl.LineBreakMode = UILineBreakMode.WordWrap;
			tl.Font = this.Font;
			tl.Lines = 0;

			cell.BackgroundColor = Appearance.BackgroundColorEditable;
			tl.Font = Appearance.LabelFont;

			return cell;
		}