OverwriteMode Property (InputMask)
In This Topic
Gets or sets a value that determines whether the input element handles input in overwrite mode. In **overwrite mode**, every character you type is displayed at the cursor position. If a character is already at that position, it is replaced.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(False)>
Public Property OverwriteMode As System.Boolean
'Usage
Dim instance As InputMask
Dim value As System.Boolean
instance.OverwriteMode = value
value = instance.OverwriteMode
[System.ComponentModel.DefaultValue(false)]
public System.bool OverwriteMode {get; set;}
public read-write property OverwriteMode: System.Boolean;
System.ComponentModel.DefaultValueAttribute()
public function get,set OverwriteMode : System.boolean
[System.ComponentModel.DefaultValue(false)]
public: __property System.bool get_OverwriteMode();
public: __property void set_OverwriteMode(
System.bool value
);
[System.ComponentModel.DefaultValue(false)]
public:
property System.bool OverwriteMode {
System.bool get();
void set ( System.bool value);
}
See Also