VintaSoft Imaging .NET SDK 15.0: Documentation for .NET developer
Vintasoft.Imaging.Office.DocumentEditor.UI Namespace / DocumentUnitsConverter Class / TryConvertPosisiveNumberToDip(String,Double) Method
Syntax Requirements SeeAlso
In This Topic
    TryConvertPosisiveNumberToDip(String,Double) Method (DocumentUnitsConverter)
    In This Topic
    Tries to convert a string, which represents a positive number, to the number in the Device Independed Pixels (DIP).
    Syntax
    'Declaration
    
    Public Function TryConvertPosisiveNumberToDip( _
    ByVal text
    A string, which represents a positive number, to convert.
    As System.String, _
    ByRef value
    The converted value.
    As Double _
    ) As Boolean
    public bool TryConvertPosisiveNumberToDip(
    System.String text,
    out double value
    )
    public: bool TryConvertPosisiveNumberToDip(
    System.String text,
    [PARAMFLAG::Out] double value
    )
    public:
    bool TryConvertPosisiveNumberToDip(
    System.String text,
    [Out] double value
    )

    Parameters

    text
    A string, which represents a positive number, to convert.
    value
    The converted value.

    Return Value

    True if string was converted successfully; otherwise, false.
    Requirements

    Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also