You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:param name: The object's name is a required positional argument.
1557
+
1558
+
:param activate: Activation (setting `activate` to true) is useful for integration with the classic API, and some internal OpenDSS commands.
1559
+
If you interact with this object only via the Alt API, no need to activate it (due to performance costs).
1560
+
1561
+
:param begin_edit: This controls how the edit context is left after the object creation:
1562
+
- `True`: The object will be left in the edit state, requiring an `end_edit` call or equivalent.
1563
+
- `False`: No edit context is started.
1564
+
- `None`: If no properties are passed as keyword arguments, the object will be left in the edit state (assumes the user will fill the properties from Python attributes). Otherwise, the internal edit context will be finalized.
1565
+
1566
+
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
1567
+
:return: Returns the new DSS object, wrapped in Python.
1568
+
1569
+
Note that, to make it easier for new users where the edit context might not be too relevant, AltDSS automatically opens/closes edit contexts for single properties if the object is not in the edit state already.
:param begin_edit: The argument `begin_edit` indicates if the user want to leave the elements in the edit state, and requires a call to `end_edit()` or equivalent. The default `begin_edit` is set to `None`. With `None`, the behavior will be adjusted according the default of how the batch is created.
1580
+
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
1581
+
:param names: When using a list of names, each new object will match the names from this list. `begin_edit` defaults to `True` if no arguments for properties were passed, `False` otherwise.
1582
+
:param count: When using `count`, new objects will be created with based on a random prefix, with an increasing integer up to `count`. `begin_edit` defaults to `True` if no arguments for properties were passed, `False` otherwise.
1583
+
:param df: Currently **EXPERIMENTAL AND LIMITED**, tries to get the columns from a dataframe to populate the names and the DSS properties. `begin_edit` defaults to `False`.
1584
+
:return: Returns the new batch of DSS objects, wrapped in Python.
1585
+
1586
+
Note that, to make it easier for new users where the edit context might not be too relevant, AltDSS automatically opens/closes edit contexts for single properties if the object is not in the edit state already.
:param name: The object's name is a required positional argument.
857
+
858
+
:param activate: Activation (setting `activate` to true) is useful for integration with the classic API, and some internal OpenDSS commands.
859
+
If you interact with this object only via the Alt API, no need to activate it (due to performance costs).
860
+
861
+
:param begin_edit: This controls how the edit context is left after the object creation:
862
+
- `True`: The object will be left in the edit state, requiring an `end_edit` call or equivalent.
863
+
- `False`: No edit context is started.
864
+
- `None`: If no properties are passed as keyword arguments, the object will be left in the edit state (assumes the user will fill the properties from Python attributes). Otherwise, the internal edit context will be finalized.
865
+
866
+
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
867
+
:return: Returns the new DSS object, wrapped in Python.
868
+
869
+
Note that, to make it easier for new users where the edit context might not be too relevant, AltDSS automatically opens/closes edit contexts for single properties if the object is not in the edit state already.
:param begin_edit: The argument `begin_edit` indicates if the user want to leave the elements in the edit state, and requires a call to `end_edit()` or equivalent. The default `begin_edit` is set to `None`. With `None`, the behavior will be adjusted according the default of how the batch is created.
880
+
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
881
+
:param names: When using a list of names, each new object will match the names from this list. `begin_edit` defaults to `True` if no arguments for properties were passed, `False` otherwise.
882
+
:param count: When using `count`, new objects will be created with based on a random prefix, with an increasing integer up to `count`. `begin_edit` defaults to `True` if no arguments for properties were passed, `False` otherwise.
883
+
:param df: Currently **EXPERIMENTAL AND LIMITED**, tries to get the columns from a dataframe to populate the names and the DSS properties. `begin_edit` defaults to `False`.
884
+
:return: Returns the new batch of DSS objects, wrapped in Python.
885
+
886
+
Note that, to make it easier for new users where the edit context might not be too relevant, AltDSS automatically opens/closes edit contexts for single properties if the object is not in the edit state already.
:param name: The object's name is a required positional argument.
1095
+
1096
+
:param activate: Activation (setting `activate` to true) is useful for integration with the classic API, and some internal OpenDSS commands.
1097
+
If you interact with this object only via the Alt API, no need to activate it (due to performance costs).
1098
+
1099
+
:param begin_edit: This controls how the edit context is left after the object creation:
1100
+
- `True`: The object will be left in the edit state, requiring an `end_edit` call or equivalent.
1101
+
- `False`: No edit context is started.
1102
+
- `None`: If no properties are passed as keyword arguments, the object will be left in the edit state (assumes the user will fill the properties from Python attributes). Otherwise, the internal edit context will be finalized.
1103
+
1104
+
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
1105
+
:return: Returns the new DSS object, wrapped in Python.
1106
+
1107
+
Note that, to make it easier for new users where the edit context might not be too relevant, AltDSS automatically opens/closes edit contexts for single properties if the object is not in the edit state already.
:param begin_edit: The argument `begin_edit` indicates if the user want to leave the elements in the edit state, and requires a call to `end_edit()` or equivalent. The default `begin_edit` is set to `None`. With `None`, the behavior will be adjusted according the default of how the batch is created.
1118
+
:param **kwargs: Pass keyword arguments equivalent to the DSS properties of the object.
1119
+
:param names: When using a list of names, each new object will match the names from this list. `begin_edit` defaults to `True` if no arguments for properties were passed, `False` otherwise.
1120
+
:param count: When using `count`, new objects will be created with based on a random prefix, with an increasing integer up to `count`. `begin_edit` defaults to `True` if no arguments for properties were passed, `False` otherwise.
1121
+
:param df: Currently **EXPERIMENTAL AND LIMITED**, tries to get the columns from a dataframe to populate the names and the DSS properties. `begin_edit` defaults to `False`.
1122
+
:return: Returns the new batch of DSS objects, wrapped in Python.
1123
+
1124
+
Note that, to make it easier for new users where the edit context might not be too relevant, AltDSS automatically opens/closes edit contexts for single properties if the object is not in the edit state already.
0 commit comments