Infragistics(R) NetAdvantage(R) Windows Forms
UseEditorMaskSettings Property
See Also  E-mail your feedback on this topic.
Infragistics.Win.UltraWinGrid Namespace > UltraGridColumn Class : UseEditorMaskSettings Property

Specifies whether to use the editor's mask related settings rather than the column's mask settings. Default value of this property is false.

Syntax

Visual Basic (Declaration) 
Public Property UseEditorMaskSettings As Boolean
C# 
public bool UseEditorMaskSettings {get; set;}

Remarks

By default the UltraGrid maskes use of MaskDataMode, MaskDisplayMode and MaskClipMode settings of the column ignoring any settings off the editor's default owner. This is due to the fact that the associated MaskMode enum doesn't have Default as its member. You can override this default behavior by setting this property to true. When this property is set to true, UltraGrid will always use the settings off the editor's owner. This fascilitates different mask data/display/clip modes on different cells of the same column by using the cell's Editor property and specifying the mask settings on the editors assigned to cells of the column. This property will also change the resolution order for MaskInput property. It will use the editor's MaskInput settings if they are non-nulls or else use the column's MaskInput settings.

See Also