Castle.MonoRail.ActiveRecordScaffold.Helpers.PresentationHelper.BestAlignFor C# (CSharp) Method

BestAlignFor() public method

public BestAlignFor ( Type type ) : String
type System.Type
return String
		public String BestAlignFor(Type type)
		{
			if (type == typeof(String))
			{
				return "left";
			}

			return "center";
		}