Add an Attribute that represents a list of values. It is recommended that any name used for these configuration properties not include spaces because certain interfaces to the properties may not work correctly.
| [Visual Basic .NET] |
|---|
|
| [C#] |
|---|
|
| [Managed C++] |
|---|
|
| [Unmanaged C++] |
|---|
|
| [Java] |
|---|
|
[Python - STK API ] |
|---|
def AddListDispatchProperty(self, DispScope:"IDispatch", Name:str, Description:str, PropName:str, NewElemMethodName:str, Flags:int) -> None: |
- DispScope
- The attribute container (scope) where the attribute will be added.
- Name
- Name of the attribute to add, it is recommended that the name does not include spaces because certain interfaces to the properties may not work correctly.
- Description
- Description of the attribute to add.
- PropName
- Name of the property to be called to set/get the value of this attribute. The property must be of the same type as that of the values in the list.
- NewElemMethodName
- Name of a method that will be called to create a new element. That method must take no argument and return an object supporting either the IAttrConfig interface or a late bound GetConfig property.
- Flags
- Bitwise combination of AgEAttrAddFlags flags.






