XmpBoolean constructor

__init__(self)

Initializes a new instance of the XmpBoolean class with default value.


def __init__(self):
    ...

__init__(self, value)

Initializes a new instance of the XmpBoolean class based on boolean value.


def __init__(self, value):
    ...
Parameter Type Description
value bool Boolean value.

__init__(self, value)

Initializes a new instance of the XmpBoolean class.


def __init__(self, value):
    ...
Parameter Type Description
value System.String The value.

Exceptions

Exception Description
ArgumentNullException Value could not be null.
ArgumentException Invalid string value.

See Also