Class RadBrowseEditorElement
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class RadBrowseEditorElement : RadTextBoxElement, INotifyPropertyChanged, ICustomTypeDescriptor, ISupportSystemSkin, IComponent, IDisposable, IBindableComponent, ISupportDrag, ISupportDrop, IShortcutProvider, IStylableElement, IStylableNode
Constructors
RadBrowseEditorElement()
Properties
BrowseButton
Gets the Rad
Declaration
public BrowseEditorButton BrowseButton { get; }
Property Value
BrowseDialog
Gets the Browse
Declaration
public Component BrowseDialog { get; }
Property Value
System.
|
Dialog
Use the BrowseDialog property and and cast it to the actual dialog type.
Declaration
[Obsolete("Use the BrowseDialog property and and cast it to the actual dialog type.")]
public CommonDialog Dialog { get; }
Property Value
System.
|
DialogType
Gets or sets the type of dialog to be opened when the browse button is pressed.
Declaration
public virtual BrowseEditorDialogType DialogType { get; set; }
Property Value
ReadOnly
Determines if users can input text directly into the text field.
Declaration
public bool ReadOnly { get; set; }
Property Value
System.
|
Value
Gets the value of the editor.
Declaration
public virtual string Value { get; set; }
Property Value
System.
|
Methods
ChangeDialogType(BrowseEditorDialogType)
Declaration
protected virtual void ChangeDialogType(BrowseEditorDialogType dialogType)
Parameters
Browse
|
CreateChildElements()
Declaration
protected override void CreateChildElements()
Overrides
CreateDialogButtonElement()
Creates the Browse
Declaration
protected virtual BrowseEditorButton CreateDialogButtonElement()
Returns
CreateFolderBrowserDialog()
Creates the System.
Declaration
protected virtual FolderBrowserDialog CreateFolderBrowserDialog()
Returns
System. A System. |
CreateFontDialog()
Declaration
protected virtual FontDialog CreateFontDialog()
Returns
System.
|
CreateOpenFileDialog()
Creates the System.
Declaration
protected virtual OpenFileDialog CreateOpenFileDialog()
Returns
System. A System. |
CreateRadFolderBrowserDialog()
Creates the Rad
Declaration
protected virtual RadOpenFolderDialog CreateRadFolderBrowserDialog()
Returns
CreateRadOpenFileDialog()
Creates the Rad
Declaration
protected virtual RadOpenFileDialog CreateRadOpenFileDialog()
Returns
CreateRadSaveFileDialog()
Creates the Rad
Declaration
protected virtual RadSaveFileDialog CreateRadSaveFileDialog()
Returns
CreateSaveFileDialog()
Creates the System.
Declaration
protected virtual SaveFileDialog CreateSaveFileDialog()
Returns
System. A System. |
DisposeManagedResources()
Declaration
protected override void DisposeManagedResources()
Overrides
InitializeDialog()
Declaration
protected virtual void InitializeDialog()
InitializeFields()
Declaration
protected override void InitializeFields()
Overrides
OnBrowseButtonClick(EventArgs)
Fires when the Browse
Declaration
protected virtual void OnBrowseButtonClick(EventArgs e)
Parameters
System. The event arguments. |
OnDialogClosed(DialogClosedEventArgs)
Fires after the dialog is closed.
Declaration
protected virtual void OnDialogClosed(DialogClosedEventArgs e)
Parameters
Dialog The event arguments. |
OnKeyDown(KeyEventArgs)
Declaration
protected override void OnKeyDown(KeyEventArgs e)
Parameters
System.
|
Overrides
OnPropertyChanged(RadPropertyChangedEventArgs)
Declaration
protected override void OnPropertyChanged(RadPropertyChangedEventArgs e)
Parameters
Overrides
OnPropertyChanging(RadPropertyChangingEventArgs)
Declaration
protected override void OnPropertyChanging(RadPropertyChangingEventArgs args)
Parameters
Overrides
OnTextChanged(EventArgs)
Declaration
protected override void OnTextChanged(EventArgs e)
Parameters
System.
|
Overrides
OnTextChanging(TextChangingEventArgs)
Declaration
protected override void OnTextChanging(TextChangingEventArgs e)
Parameters
Overrides
OnValueChanged(EventArgs)
Fires right after the editor value is changed.
Declaration
protected virtual void OnValueChanged(EventArgs e)
Parameters
System. The event arguments. |
OnValueChanging(ValueChangingEventArgs)
Fires right before the editor value is changed.
Declaration
protected virtual void OnValueChanging(ValueChangingEventArgs e)
Parameters
Value The event arguments. |
SaveValueFromDialog()
Declaration
protected virtual void SaveValueFromDialog()
SetEditorValue(String)
Sets the value of the editor.
Declaration
protected virtual void SetEditorValue(string newValue)
Parameters
System. The new value to set. |
UnwireEvents()
Declaration
protected virtual void UnwireEvents()
WireEvents()
Declaration
protected virtual void WireEvents()
Events
DialogClosed
Fires after the dialog window is closed.
Declaration
public event DialogClosedEventHandler DialogClosed
Event Type
ValueChanged
Fires after the editor value is changed.
Declaration
public event EventHandler ValueChanged
Event Type
System.
|
ValueChanging
Fires right before the value is changed. Cancelable event.
Declaration
public event ValueChangingEventHandler ValueChanging