PropertyValue constructor

init

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

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

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

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

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

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

init

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

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

init

Constructs a new instance of PropertyValue

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

init

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

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

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

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

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

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