SftButton/DLL 3.0 - Button Control
SftTree/DLL 8.0 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 4.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 8.0 - Tree Control
SftButton/DLL 3.0 - Button Control
SftTree/DLL 8.0 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 4.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 8.0 - Tree Control
SftTree/NET 2.0 - Tree Control
Defines the auto-repeat interval between Click events while the button is pressed.
Get
| VB.NET | Interval = object.ClickInterval As Integer |
| VB | Interval = object.ClickInterval As Long |
| C#.NET | int Interval = object.ClickInterval; |
| VC++ | long Interval = object->ClickInterval; long Interval = object->GetClickInterval(); |
| C | HRESULT object->get_ClickInterval(long* Interval); |
Put
| VB.NET | object.ClickInterval = Interval As Integer |
| VB | object.ClickInterval = Interval As Long |
| C#.NET | int object.ClickInterval = Interval; |
| VC++ | long object->ClickInterval = Interval; void object->PutClickInterval(long Interval); |
| C | HRESULT object->put_ClickInterval(long Interval); |
object
Interval
Defines the auto-repeat interval between Click events while the button is pressed. If 0 is specified, auto-repeat of the Click event is not available. Interval can be between 0 and 10000.
The ClickInterval property defines the auto-repeat interval between Click events while the button is pressed.
The Click event is generated when the user releases the mouse button after clicking on the button using the left mouse button. If the user does not release the mouse button immediately, Click events are generated every Interval milliseconds.
See Also SftButton Object | Object Hierarchy
