three.MF.V3.Settings.CopyProject
class
CopyProject:
2class CopyProject: 3 4 """ 5 Copy project settings. 6 """ 7 def __init__(self, index: int, copyName: str = None): 8 # The index of the project to copy. 9 self.index = index 10 # The name of project copy. If unspecified a default copy name is generated. 11 self.copyName = copyName
Copy project settings.