XmpBoolean constructor

init

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

def __init__(self):
    ...

init

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

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

init

Initializes a new instance of the XmpBoolean class.

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

Exceptions

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

See Also