Files
Umbraco-CMS/src/Umbraco.Web/RenderFieldCaseType.cs
Shannon Deminick 56b7f8d98b Got .Field method for MVC working and have macro's rendering inside of RTE in MVC.
Added internal setting for global settings to return an MVC area string based on the umbraco path.
Added a ton of extension methods from v5 that are used in much of the MVC engines.
Added UmbracoHelper methods for MVC rendering including Field so that we can render the correct RTE
field markup when the RTE contains a macro, will add extension methods for the @CurrentPage dynamic object to
do the same to make it consistent.
2012-09-05 09:35:24 +07:00

13 lines
248 B
C#

namespace Umbraco.Web
{
/// <summary>
/// Used in the .Field method when rendering an Umbraco field to specify what case type it should be
/// </summary>
public enum RenderFieldCaseType
{
Upper,
Lower,
Title,
Unchanged
}
}