SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Defines the current insert/overtype mode.
Get
VB.NET | Boolean = object.Insert As Boolean |
VB | Boolean = object.Insert As Boolean |
C#.NET | bool Boolean = object.Insert; |
VC++ | VARIANT_BOOL Boolean = object->Insert; VARIANT_BOOL Boolean = object->GetInsert(); |
C | HRESULT object->get_Insert(VARIANT_BOOL* Boolean); |
Put
VB.NET | object.Insert = Boolean As Boolean |
VB | object.Insert = Boolean As Boolean |
C#.NET | bool object.Insert = Boolean; |
VC++ | VARIANT_BOOL object->Insert = Boolean; void object->PutInsert(VARIANT_BOOL Boolean); |
C | HRESULT object->put_Insert(VARIANT_BOOL Boolean); |
object
Boolean
Defines the current insert/overtype mode.
Boolean | Description |
---|---|
True | The control is in insert mode. |
False | The control is in overtype mode. |
The Insert property defines the current insert/overtype mode.
Overtype mode is visually indicated by the selection which is automatically extended to include one character position (if possible).
The user switches between insert and overtype mode using the Insert key. The application can switch between modes using the Insert property.
The InputMode property is used to define the control's insert/overtype mode behavior.
To allow an application to display the current insert/overtype mode, e.g., in a status bar, the InputModeUpdate event is used to notify the application of any mode change that may occur, through user interaction, input focus change or application driven changes. By responding to the InputModeUpdate event, an application is guaranteed to be notified of the current input mode.
See Also SftMask Object | Object Hierarchy