PropertyValue constructor

__init__(self, value)

Initializes a new instance of the PropertyValue class with an integer value.


def __init__(self, value):
    ...
Parameter Type Description
value int An Int32 value.

__init__(self, value)

Initializes a new instance of the PropertyValue class with a long value.


def __init__(self, value):
    ...
Parameter Type Description
value int A Int64 value.

__init__(self, value)

Initializes a new instance of the PropertyValue class with a boolean value.


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

__init__(self, value)

Initializes a new instance of the PropertyValue class with a double value.


def __init__(self, value):
    ...
Parameter Type Description
value float A Double value.

__init__(self, value)

Initializes a new instance of the PropertyValue class with a string value.


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

__init__(self, value)

Initializes a new instance of the PropertyValue class with a object value.


def __init__(self, value):
    ...
Parameter Type Description
value System.Object A Object value.

__init__(self, value)

Initializes a new instance of the PropertyValue class with a DateTime value.


def __init__(self, value):
    ...
Parameter Type Description
value System.DateTime A DateTime value.

__init__(self, value)

Initializes a new instance of the PropertyValue class with a TimeSpan value.


def __init__(self, value):
    ...
Parameter Type Description
value System.TimeSpan A TimeSpan value.

__init__(self, values)

Initializes a new instance of the PropertyValue class with a string array.


def __init__(self, values):
    ...
Parameter Type Description
values list A string array.

__init__(self, values)

Initializes a new instance of the PropertyValue class with a byte array.


def __init__(self, values):
    ...
Parameter Type Description
values bytes A byte array.

__init__(self, values)

Initializes a new instance of the PropertyValue class with an array of double values.


def __init__(self, values):
    ...
Parameter Type Description
values list An array of double values.

__init__(self, values)

Initializes a new instance of the PropertyValue class with an array of integer values.


def __init__(self, values):
    ...
Parameter Type Description
values list An array of integer values.

__init__(self, values)

Initializes a new instance of the PropertyValue class with an array of long values.


def __init__(self, values):
    ...
Parameter Type Description
values list An array of long values.

__init__(self, values)

Initializes a new instance of the PropertyValue class with an array of ushort values.


def __init__(self, values):
    ...
Parameter Type Description
values list An array of ushort values.

See Also