ESRI.ArcGIS.Mobile.Client
ESRI.ArcGIS.Mobile.Client.ValueConverters Namespace
See Also  Inheritance Hierarchy Send Feedback

Classes

 ClassDescription
ClassAutoUploadOptionToStringConverter Converts an AutoUploadOption enumeration value to a string.
ClassAutoUploadTimeUnitToStringConverter Converts a AutoUploadTimeUnit enumeration value to a string.
ClassBitmapToBitmapSourceConverter Converts a System.Drawing.Bitmap into a System.Windows.Media.Imaging.BitmapSource. Internally it uses a cache of the resulting BitmapSource so that for any given Bitmap object it creates a single BitmapSource object. ClearCache should be called to empty the (static) cache when it is no longer needed.
ClassBooleanToEnabledStringConverter Converts a boolean value to an 'Enabled'/'Disabled' string.
ClassBooleanToNotBooleanConverter Inverts the value of a boolean.
ClassBooleanToOnOffStringConverter Converts a boolean value to a string, 'On' for true or 'Off' for false.
ClassBooleanToVisibileHiddenConverter Converts a boolean value to a Visibility value of either Visible or Hidden (for true/false, respectively).
ClassBooleanToVisibleCollapsedConverter Converts a boolean value to a Visibility value of either Visible or Collapsed (for true/false, respectively).
ClassCompositeValueConverter CompositeValueConverter is a (virtual) value converter that aggregates multiple value converters together into a single converter. This allows multiple value converters to be chained together yet allowing binding in XAML by providing a single value converter. Value converters are added to the Converters property collection. Converters are evaluation based on the order in which they were added to the collection. When the Convert method is called, the first converter in the collection is called first and the last converter in the collection is called last. When the ConvertBack method is called, the reverse occurs. NOTE: All value converters added to the collection MUST be decorated with the [ValueConversion] attribute, otherwise an exception will be thrown. CompositeValueConverter may be declared directly in XAML (thanks to the ContentProperty attribute, below) as follows:
ClassCoordinateDisplayFormatToStringConverter Converts a CoordinateDisplayFormat enumeration value to a string.
ClassCrewMemberIsActiveToImageSourceConverter Converts a boolean--representing the CrewMemberFeature.IsActive property-- into an ImageSource.
ClassDateRangeToStringConverter Converts a DateCondition.DateRange enumeration to a string.
ClassDateTimeToVisibilityHiddenConverter Converts a DateTime value to a Visibility value of either Visible or Hidden if DateTime == new DateTime(0), hide it otherwise, show it. (for true/false, respectively).
ClassDistanceToStringConverter A multi-converter that converts a distance (double) and the unit the distance is in (Unit) into a user-friendly string, using the current locale. E.g., "5 miles" or "5 kilometers".
ClassDoubleToDistanceLevelConverter Converts a map distance value (double) to an integral level value (even though it is a double). This is so we can bind a slider control to a distance property and use a set of predefined levels as the slider ticks.
ClassDoubleToHalveDoubleConverter Converts a double value into half its value (i.e., divides by 2).
ClassDoubleToNegativeConverter Negates a double value by multiplying it by negative one (-1).
ClassEditStateToStringConverter Converts an EditState enumeration value to a string.
ClassEnumToBooleanConverter Converts an enumeration value to a boolean by comparing the enumeration value to a specific value (i.e, the 'parameter' parameter). When using this converter you must use the ConverterParameter attribute and pass in the expected enumeration value.
ClassFeatureAttributeToTextColorConverter Converts a FeatureAttribute into a brush.
ClassFeatureTypeToStringConverter Converts a FeatureType to a string returning the Name property
ClassFolderDepthToMarginConverter FolderDepthToMarginConverter class
ClassGpsElevationConverter Converts a Gps elevation into a string with unit.
ClassGpsFixStatusToStringConverter Converts a GpsFixStatus to a string.
ClassGpsQualityToBackgroundBrushConverter Converts a GPS quality (bool) value to a background brush.
ClassGpsQualityToForegroundBrushConverter Converts a GPS quality (bool) value to a foreground brush.
ClassGpsSpeedConverter Converts a Gps speed into a string with unit.
ClassGpsStateIsConnectedConverter Converts a GpsConnectionState into a boolean. Returns true if the state is Connected; otherwise, false.
ClassGpsStateIsConnectingConverter Converts a GpsConnectionState into a boolean. Returns true if the state is Connecting; otherwise, false.
ClassGpsStateIsDisconnectedConverter Converts a GpsConnectionState into a boolean. Returns true if the state is Disconnected; otherwise, false.
ClassGpsStateIsDisconnectedOrConnectingConverter Converts a GpsConnectionState into a boolean. Returns true if the state is Disconnected or Connecting; otherwise, false.
ClassGpsStateIsDisconnectingConverter Converts a GpsConnectionState into a boolean. Returns true if the state is Disconnecting; otherwise, false.
ClassGpsStateToBackgroundConverter Converts a GpsConnectionState enumeration value into a Brush.
ClassGpsStateToStringConverter Converts a GpsConnectionState enumeration value into a string.
ClassIconToImageSourceConverter Converts a System.Drawing.Icon into a System.Windows.Media.Imaging.ImageSource.
ClassIsCurrentProjectToBooleanConverter Converts a ProjectFile into a boolean, returning true if the ProjectFile is the same project currently open (i.e., MobileApplication.Current.Project).
ClassIsGreaterThanZeroConverter Converts an integer value into a boolean, returning true if the value is greater than zero, otherwise false.
ClassIsNullToBooleanConverter Converts an object reference to a boolean, returning true if it is null or System.DBNull.Value; otherwise, false.
ClassIsVisibleAtCurrentScaleConverter Returns True if the layer is visible at the current map display scale
ClassLateralOffsetDirectionToStringConverter Converts a LateralOffsetDirection enumeration value into a string.
ClassNonEmptyStringToVisibilityConverter Converts a string into a Visibility value, returning Collapsed or Hidden if the string is null or empty; otherwise, Visible. By default, Collapsed will be returned if the string is null or empty, but if a string parameter may be passed to the converter--either "Collapsed" or "Hidden"--then that value will be returned instead.
ClassObjectReferenceEqualsToBooleanConverter Converts an object to a boolean by comparing the object reference to another object reference (passed as the converter parameter).
ClassOpacitySettingsToOpacityMultiConverter A multi-converter that converts an opacity value (double) and a boolean into a resulting opacity value (double). If the boolean is false then 100 is returned; otherwise, the original input value is returned.
ClassPanModeToStringConverter Converts a PanMode enumeration value to a string.
ClassPdopToStringConverter Converts a (double) PDOP value into a descriptive string of the format "value (description)". E.g., "6.0 (Moderate)".
ClassReverseFlowDirection Reverses the value of the FlowDirection. Returns RightToLeft if the value is LeftToRight; returns LeftToRight if the value is RightToLeft.
ClassSearchAreaToTextConverter Converts a SearchArea enumeration to a string.
ClassSecondsToStringConverter Converts an integer value representing time in seconds into a user-friendly string, like "10 minutes" or "1 hour".
ClassSnappingUnitHelperToPluralStringConverter Converts a Unit into a string describing a unit value of more than one.
ClassStringToVisibilityConverter Converts a string into a Visibility value, returning Collapsed or Hidden if the string is null or empty; otherwise, Visible. By default, Collapsed will be returned if the string is null or empty, but if a string parameter may be passed to the converter--either "Collapsed" or "Hidden"--then that value will be returned instead.
ClassTaskNoteToAbbreviatedStringConverter Converts a string--representing the Task.Note property--into an string with a maximum of 2 characters. Any string greater than 2 characters will return an asterisk (*).
ClassUnitSystemToStringConverter Converts a UnitSystem enumeration value to a string.
ClassUnitToAreaStringConverter Converts a Unit into a string describing an area unit.
ClassUnitToPluralStringConverter Converts a Unit into a string describing a unit value of more than one.
ClassUnitToSingularStringConverter Converts a Unit into a string describing a single unit value.
ClassValidationErrorsToStringConverter Converts a collection of validation errors (e.g., the Validation.Errors attached property) to a string.
ClassZoomModeToStringConverter Converts a ZoomMode enumeration value to a string.

See Also