aspnetmvc-devexpress-dot-web-dot-mvc-dot-editorextension-dot-getvalue.md
| Name | Parameters | Description |
|---|---|---|
| GetValue<T>(String, MaskSettings) static | name, maskSettings | Returns a specific editor’s value, which is validated based on the passed mask settings. |
| GetValue<T>(String, ValidationSettings, MaskSettings) static | name, validationSettings, maskSettings | Returns a specific editor’s value, which is validated based on the passed validation and mask settings. |
| GetValue<T>(String, ValidationSettings, EventHandler<ValidationEventArgs>, MaskSettings, ref Boolean) static | name, validationSettings, validationDelegate, maskSettings, isValid | Returns a specific editor’s value, which is validated based on the passed validation and mask settings, and custom validation logic, and indicates whether the editor value is valid. |
| GetValue<T>(String, ValidationSettings, EventHandler<ValidationEventArgs>, MaskSettings) static | name, validationSettings, validationDelegate, maskSettings | Returns a specific editor’s value, which is validated based on the passed validation and mask settings and custom validation logic. |
| GetValue<T>(String, ValidationSettings, EventHandler<ValidationEventArgs>, ref Boolean) static | name, validationSettings, validationDelegate, isValid | Returns a specific editor’s value, which is validated based on both the passed validation settings and custom validation logic, and indicates whether the editor value is valid. |
| GetValue<T>(String, ValidationSettings, EventHandler<ValidationEventArgs>) static | name, validationSettings, validationDelegate | Returns a specific editor’s value, which is validated based on both the passed validation settings and custom validation logic. |
| GetValue<T>(String, ValidationSettings) static | name, validationSettings | Returns a specific editor’s value, which is validated based on the passed validation settings. |
| GetValue<T>(String) static | name | Returns a specific editor’s value. |