Gets or sets a value that determines whether depressed keys generate more than one character.
Syntax
Visual Basic (Declaration) | |
---|
Public Property AutoRepeat As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As Vt
Dim value As Boolean
instance.AutoRepeat = value
value = instance.AutoRepeat |
C# | |
---|
public bool AutoRepeat {get; set;} |
Managed Extensions for C++ | |
---|
public: __property bool get_AutoRepeat();
public: __property void set_AutoRepeat(
bool value
); |
C++/CLI | |
---|
public:
property bool AutoRepeat {
bool get();
void set ( bool value);
} |
Property Value
true if a depressed key should generate more than one character; false if a depressed key should only generate one character. The default value is true.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also