def __init__(self, label, name = NAME, liste_choix=[], liste_selections=[]): self.liste_choix = liste_choix self.liste_selections = liste_selections # Initialisation ArrayStringProperty.__init__(self, label, name) # Set default delimiter self.SetAttribute("Delimiter", ',') # Importation des sélections self.SetValue(self.liste_selections)
def __init__(self, label, name=NAME, liste_choix=[], liste_selections=[]): self.liste_choix = liste_choix self.liste_selections = liste_selections # Initialisation ArrayStringProperty.__init__(self, label, name) # Set default delimiter self.SetAttribute("Delimiter", ',') # Importation des sélections self.SetValue(self.liste_selections)