Cirrious.MvvmCross.Dialog.Touch.Dialog.Elements.Element.UpdateCaptionDisplay C# (CSharp) Method

UpdateCaptionDisplay() protected method

Override this method if you want some other action to be taken when the caption changes
protected UpdateCaptionDisplay ( UITableViewCell cell ) : void
cell UITableViewCell
return void
        protected virtual void UpdateCaptionDisplay(UITableViewCell cell)
        {
            if (cell != null && cell.TextLabel != null)
                cell.TextLabel.Text = _caption;
        }