Class RadBrowseEditor
Represents a browser control box. The RadBrowseEditor class is a simple wrapper for the RadBrowseEditorElement class. The RadBrowseEditor acts to transfer events to and from its corresponding RadBrowseEditorElement. The RadBrowseEditorElement which is essentially the RadBrowseEditor control may be nested in other telerik controls.
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
[TelerikToolboxCategory("Editors")]
public class RadBrowseEditor : RadEditorControl, INotifyPropertyChanged, ISupportInitializeNotification, ISupportInitialize, IComponentTreeHandler, ILayoutHandler, IPCHost, IAnalyticsProvider
Constructors
RadBrowseEditor()
Declaration
public RadBrowseEditor()
Properties
AutoSize
Gets or sets whether the edit control is auto-sized
Declaration
public override bool AutoSize { get; set; }
Property Value
System.Boolean
|
Overrides
BrowseDialog
Gets the BrowseDialog that will open upon pressing the browse button.
Declaration
public Component BrowseDialog { get; }
Property Value
System.ComponentModel.Component
|
BrowseElement
Gets the RadBrowseEditorElement of this control.
Declaration
public RadBrowseEditorElement BrowseElement { get; }
Property Value
RadBrowseEditorElement
|
DefaultSize
Declaration
protected override Size DefaultSize { get; }
Property Value
System.Drawing.Size
|
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.Windows.Forms.CommonDialog
|
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
BrowseEditorDialogType
|
ReadOnly
Determines if users can input text directly into the text field..
Declaration
public bool ReadOnly { get; set; }
Property Value
System.Boolean
|
Text
This property is not relevant for this class.
Declaration
public override string Text { get; set; }
Property Value
System.String
|
Overrides
Value
Gets or sets the value of the editor.
Declaration
public string Value { get; set; }
Property Value
System.String
|
Methods
CreateChildItems(RadElement)
Declaration
protected override void CreateChildItems(RadElement parent)
Parameters
RadElement
parent
|
Overrides
CreateEditorElement()
Declaration
protected virtual RadBrowseEditorElement CreateEditorElement()
Returns
RadBrowseEditorElement
|
Dispose(Boolean)
Declaration
protected override void Dispose(bool disposing)
Parameters
System.Boolean
disposing
|
Overrides
ProcessAutoSizeChanged(Boolean)
Declaration
protected override void ProcessAutoSizeChanged(bool value)
Parameters
System.Boolean
value
|
Overrides
ResetBackColorThemeOverrides()
Declaration
protected override void ResetBackColorThemeOverrides()
Overrides
ResetForeColorThemeOverrides()
Declaration
protected override void ResetForeColorThemeOverrides()
Overrides
SetBackColorThemeOverrides()
Declaration
protected override void SetBackColorThemeOverrides()
Overrides
SetForeColorThemeOverrides()
Declaration
protected override void SetForeColorThemeOverrides()
Overrides
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
DialogClosedEventHandler
|
ReadOnlyChanged
Fires when the ReadOnly property value is changed.
Declaration
public event EventHandler ReadOnlyChanged
Event Type
System.EventHandler
|
ValueChanged
Fires after the editor value is changed.
Declaration
public event EventHandler ValueChanged
Event Type
System.EventHandler
|
ValueChanging
Fires right before the value is changed
Declaration
public event ValueChangingEventHandler ValueChanging
Event Type
ValueChangingEventHandler
|