Version

TabNavigation Property

Specifies whether to tab between sections when Tab and Shift+Tab keys are pressed. The default value is NextControl.
Syntax
'Declaration
 
Public Property TabNavigation As MaskedEditTabNavigation
public MaskedEditTabNavigation TabNavigation {get; set;}
Example
The following code demonstrates how TabNavigation works. The default value of the property is NextControl. However depending on the mask, you may want to specify TagNavigation mode of NextSection. When set to NextSection, Tab and Shift+Tab keyboard presses will cause the focus to move from section to section in the editor. The following code creates a XamMaskedEditor with a mask that creates four sections. With TabNavigation set to NextSection, you'll be able to navigate to next or previous section by hitting the Tab or Shift+Tab key on the keyboard respectively.

<igEditors:XamMaskedEditor 
            
x:Name="maskedEditor1" 
            
Mask="###-###-###-###" 
            
Value="111-222-333-444" 
            
TabNavigation="NextSection" />
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also