Interface IExtendableTexBox
Defines the interface for extendable text box wrappper.
Inherited Members
System.IDisposable.Dispose()
Namespace: Syncfusion.Windows.Forms
Assembly: Syncfusion.Shared.Base.dll
Syntax
public interface IExtendableTexBox : IDisposable
Properties
BackColor
Background color of text box.
Declaration
Color BackColor { get; }
Property Value
Type |
---|
System.Drawing.Color |
ClientRectangle
Client rectangle of text box
Declaration
Rectangle ClientRectangle { get; }
Property Value
Type |
---|
System.Drawing.Rectangle |
Focused
Indicates whether text box is focused.
Declaration
bool Focused { get; }
Property Value
Type |
---|
System.Boolean |
Font
Font of text box.
Declaration
Font Font { get; }
Property Value
Type |
---|
System.Drawing.Font |
Handle
Text box control native handle.
Declaration
IntPtr Handle { get; }
Property Value
Type |
---|
System.IntPtr |
Remarks
Must return System.IntPtr.Zero if handle isn't created yet.
RightToLeft
Indicates whether text box is in RTL mode.
Declaration
RightToLeft RightToLeft { get; }
Property Value
Type |
---|
System.Windows.Forms.RightToLeft |
Methods
Invalidate()
Invalidates text box.
Declaration
void Invalidate()
Events
HandleCreated
Occurs when text box is created.
Declaration
event EventHandler HandleCreated
Event Type
Type |
---|
System.EventHandler |
TextBoxMouseDblClick
Declaration
event EventHandler TextBoxMouseDblClick
Event Type
Type |
---|
System.EventHandler |
TextBoxMouseDown
Declaration
event EventHandler TextBoxMouseDown
Event Type
Type |
---|
System.EventHandler |
TextBoxTextChanged
Occurs when text of text box is changed.
Declaration
event ValueChangedEventHandler TextBoxTextChanged
Event Type
Type |
---|
ValueChangedEventHandler |