New to Telerik UI for WinFormsStart a free 30-day trial

Working with RadBrowseEditor

Updated over 6 months ago

The events defined in RadBrowseEditor provide an easy way to track user input and perform validation. The example handles such scenario.

Cancel ValueChanging Event

C#
private void radBrowseEditor1_ValueChanging(object sender, ValueChangingEventArgs e)
{
    e.Cancel = !File.Exists(e.NewValue.ToString());
}

See Also

In this article
See Also
Not finding the help you need?
Contact Support