| VariableMaskedTextProviderInsert Method  | 
 
            Called to insert a character 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 Insert(
	char character,
	ref int position
)
Public Overridable Function Insert ( 
	character As Char,
	ByRef position As Integer
) As Boolean
abstract Insert : 
        character : char * 
        position : int byref -> bool 
override Insert : 
        character : char * 
        position : int byref -> bool Parameters
- character
- Type: SystemChar
 Character to insert.
- position
- Type: SystemInt32
 Position to insert at.
Return Value
Type: 
Booleantrue when the insertion was successful, or 
false if it failed.
Implements
IMaskedTextProviderInsert(Char, Int32) See Also
See Also