MonoTouch.Dialog.ElementAppearance.Copy C# (CSharp) Method

Copy() public method

public Copy ( ) : ElementAppearance
return ElementAppearance
		public ElementAppearance Copy ()
		{
			var el = new ElementAppearance ();
			el.LabelFont = LabelFont;
			el.LabelTextColor = LabelTextColor;
			el.DetailLabelFont = DetailLabelFont;
			el.DetailLabelTextColor = DetailLabelTextColor;
			el.BackgroundColorDisabled= BackgroundColorDisabled;
			el.BackgroundColorEditable = BackgroundColorEditable;
			el.GroupedTableBackgroundColor =  GroupedTableBackgroundColor;
			el.UngroupedBackgroundColor = UngroupedBackgroundColor;
			el.TextFieldFont = TextFieldFont;
			el.TextFieldFontTextColor = TextFieldFontTextColor;
			el.DisabledLabelTextColor = DisabledLabelTextColor;
			el.DetailLabelHighlightedTextColor = DetailLabelHighlightedTextColor;
			el.LabelHighlightedTextColor = LabelHighlightedTextColor;
			el.CellHighlightedColor = CellHighlightedColor;
			return el;
		}
ElementAppearance