| VariableMaskedTextProviderDelete Method  | 
 
            Called to delete a range of characters at the specified position in the masked text.
            
 
    Namespace: 
   Eto.Forms
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic virtual bool Delete(
	ref int position,
	int length,
	bool forward
)
Public Overridable Function Delete ( 
	ByRef position As Integer,
	length As Integer,
	forward As Boolean
) As Boolean
abstract Delete : 
        position : int byref * 
        length : int * 
        forward : bool -> bool 
override Delete : 
        position : int byref * 
        length : int * 
        forward : bool -> bool Parameters
- position
- Type: SystemInt32
 Position to delete at.
- length
- Type: SystemInt32
 Length of text (in the mask) to delete
- forward
- Type: SystemBoolean
 true to delete the text forward, or false to delete backward
Return Value
Type: 
Booleantrue when the deletion was successful, or 
false if it failed.
Implements
IMaskedTextProviderDelete(Int32, Int32, Boolean) See Also
See Also