# -*- encoding: utf-8 -*-
"""
Created by eniocc at 11/10/2020
"""
from typing import List
from py_dss_interface.models import Bridge
from py_dss_interface.models.Base import Base
[docs]class DSSElementV(Base):
"""
This interface can be used to read/modify the properties of the DSSElement Class where the values are Variants.
The structure of the interface is as follows:
void DSSElementV(int32_t Parameter VARIANT *Argument) ;
This interface returns a Variant, the variable “parameter” is used to specify the property of the class to be
used and the variable “argument” can be used to modify the value of the property when necessary. Reading and
writing properties are separated and require a different parameter number to be executed.
The properties (parameter) are integer numbers and are described as follows.
"""
[docs] def dsselement_all_property_names(self) -> List[str]:
"""Gets a variant array of strings containing the names of all properties for the active DSS object."""
return Bridge.var_array_function(self.dss_obj.DSSElementV, 0, None, '')