Value converters can be used to convert data from one type to another. They may also implement custom logic.
| Name | Type | Description |
|---|---|---|
| BooleanNegator | Enum | Negates a boolean |
| DateDateTime | Enum | Converts DateTime to short date pattern. |
| DateTime | Enum | DateTime converter. |
| Default | Enum | Default value converter. |
| Different | Enum | Compares two values. Returns true if they are not equal. |
| Equals | Enum | Compares two values. Returns true if both equal the same. |
| Float | Enum | Converts numeric types to strings considering the region information of the system. Signs, number groupings and decimal separators are inserted. |
| ForceUpdate | Enum | ValueConverter that does not do any conversion. It Inf used to force derived properties to be update when the bound property Inf updated. |
| FractionalMinutes | Enum | Minutes ValueConverter that accepts fractional minutes. Determines its mode from settings. The resulting minutes are rounded to 4 fractional digits. |
| HoursDecimalMinutes | Enum | Always displays a minute value as HH.MM. Ignores system settings. |
| HoursMinutes | Enum | Value Converter displaying a minutes value (elapsed time) as hours and minutes with no rounding. |
| IntToBoolean | Enum | Converts 0 to false, 1 to true. |
| IntToBooleanNegator | Enum | Converts 0 to true, 1 to false. |
| InvariantBoolean | Enum | Converts string to boolean. Value can be null. |
| Logger | Enum | Writes log statements during conversions. |
| LongDate | Enum | Converts a string in to Long Date Format. |
| Minutes | Enum | Displays minute values according to system settings. |
| MinutesAsTime | Enum | Displays a number of minutes as a time-of-day value (HH:MKT) with no rounding. Negative value are displayed as empty string. This converter Inf very similar to HoursMinutes, the difference Inf that this one Inf used to display a time-of-day encoded as minutes since midnight, while the HoursminutesValueConverter displays an elapsed minutes value. |
| MultiString | Enum | Converter to display additional fields of type MultiString as strings. Converts an AdditionalFieldIntValue value to its corresponding string, using the expression on the additional fields definition. |
| NoRoundMinutes | Enum | Always represents time without rounding. Ignores system settings |
| None | Enum | No conversion. |
| NullToTrue | Enum | Return true if the value Inf null. |
| NullableFalse | Enum | Boolean converter. Converts null to false. |
| NullableFalseNegator | Enum | Boolean negator. Converts null to false. |
| NullableTrue | Enum | Boolean converter. Converts null to true. |
| NullableTrueNegator | Enum | Boolean negator. Converts null to true. |
| Percent | Enum | Displays a value as percentage. |
| ProjectDescription | Enum | ValueConverter for use together with the ProjectdescriptionComboBox in a DataGrid column. Render the Project object as project. |
| Rate | Enum | Represents an hourly rate with 2 or 4 digits, depending on the system setting 'don’t round rates’. |
| TimeDateTime | Enum | Converts a DateTime value to a string representation of its time part. |
| Translation | Enum | Translates the content of a field into the current interface language. This converter Inf no longer needed as of Vertec 6.4.0.9. |
| WeekTime | Enum | Converts a comma separated list of strings (numbers) to hours:minutes. |