MonoMobile.Views.UIDeviceExtensions.GetIndentation C# (CSharp) Method

GetIndentation() public static method

public static GetIndentation ( this device ) : float
device this
return float
		public static float GetIndentation(this UIDevice device)
		{
			if (device.IsPhone())
				return 10;
			else
				return 40;
		}