public class RegisterCustomPropertyValueConverters : ApplicationEventHandler
{
protected override void ApplicationStarted(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
{
EnterspeedContext.Current.EnterspeedPropertyValueConverters
.InsertBefore<DefaultTextboxPropertyValueConverter, MyCustomTextboxPropertyValueConverter>();
}
}