menu

UWP

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class LineSpacingTypeStringConverter - UWP API Reference | Syncfusion

    Show / Hide Table of Contents

    Class LineSpacingTypeStringConverter

    Implements a type converter for converting LineSpacingType to and from System.String type.

    Inheritance
    System.Object
    LineSpacingTypeStringConverter
    Implements
    Windows.UI.Xaml.Data.IValueConverter
    Namespace: Syncfusion.UI.Xaml.RichTextBoxAdv
    Assembly: Syncfusion.SfRichTextBoxAdv.UWP.dll
    Syntax
    public class LineSpacingTypeStringConverter : Object, IValueConverter

    Constructors

    LineSpacingTypeStringConverter()

    Initializes a new instance of the LineSpacingTypeStringConverter class.

    Declaration
    public LineSpacingTypeStringConverter()

    Methods

    Convert(Object, Type, Object, String)

    Converts the LineSpacingType value to the respective string value.

    Declaration
    public object Convert(object value, Type targetType, object parameter, string language)
    Parameters
    Type Name Description
    System.Object value

    The source data being passed to the target.

    System.Type targetType

    The type of the target property.

    System.Object parameter

    An optional parameter to be used in the converter logic.

    System.String language

    The language of the conversion.

    Returns
    Type Description
    System.Object

    Returns "Atleast", if the value is LineSpacingType.Atleast. Returns "Exactly", if the value is LineSpacingType.Exactly. Returns "Multiple", if the value is LineSpacingType.Multiple. By default, returns empty string.

    Remarks

    Modifies the source data before passing it to the target for display in the UI.

    ConvertBack(Object, Type, Object, String)

    Converts the string value to the respective LineSpacingType value.

    Declaration
    public object ConvertBack(object value, Type targetType, object parameter, string language)
    Parameters
    Type Name Description
    System.Object value

    The target data being passed to the source.

    System.Type targetType

    The type of the target property, specified by a helper structure that wraps the type name.

    System.Object parameter

    An optional parameter to be used in the converter logic.

    System.String language

    The language of the conversion.

    Returns
    Type Description
    System.Object

    Returns LineSpacingType.Atleast, if the value is "Atleast". Returns LineSpacingType.Exactly, if the value is "Exactly". By default, returns LineSpacingType.Multiple.

    Remarks

    Modifies the target data before passing it to the source object. This method is called only in TwoWay bindings.

    Implements

    Windows.UI.Xaml.Data.IValueConverter

    Extension Methods

    DateTimeExtension.ToDateTime(Object)
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved