Skip to main content
All docs
V26.1
  • XmpBool.TryParse(String, out XmpBool) Method

    Converts the string representation of a boolean value to its XmpBool equivalent. A return value indicates whether the conversion succeeded.

    Namespace: DevExpress.Docs.Pdf

    Assembly: DevExpress.Docs.Pdf.v26.1.dll

    Declaration

    public static bool TryParse(
        string value,
        out XmpBool result
    )

    Parameters

    Name Type Description
    value String

    The string representation of a target boolean value.

    result XmpBool

    When this method returns, it contains aXmpBool value that is equivalent to the boolean value contained in value if the conversion succeeded; null if the conversion failed.

    Returns

    Type Description
    Boolean

    true if the conversion succeeded; otherwise, false.

    See Also