[calltips] 1=_ObjDictCreate([$MODE=0]) erzeugt ein Dictionary-Objekt, Modus: 0=Binär (Standard), 1=Text; #include 'objDictionary.au3' 2=_ObjDictAdd($oDICT, $KEY, $VALUE) fügt dem Dictionary-Objekt ein Schlüssel-Wert Paar hinzu; #include 'objDictionary.au3' 3=_ObjDictGetValue($oDICT, $KEY) Liest den Wert für einen Schlüssel aus; #include 'objDictionary.au3' 4=_ObjDictSetValue($oDICT, $KEY) Setzt einen neuen Wert für einen Schlüssel; #include 'objDictionary.au3' 5=_ObjDictCount($oDICT) Gibt die Anzahl der Schlüssel-Wert Paare zurück; #include 'objDictionary.au3' 6=_ObjDictSearch($oDICT, $KEY) Prüft ob der Schlüssel existiert, liefert 'TRUE' wenn gefunden; #include 'objDictionary.au3' 7=_ObjDictDeleteKey($oDICT, $KEY) Löscht den angegebenen Schlüssel (und dessen Wert). Mit $KEY='' werden alle Schlüssel gelöscht (Standard); #include 'objDictionary.au3' 8=_ObjDictList($oDICT) Eine GUI mit einem ListView zeigt alle Schlüssel-Wert Paare; #include 'objDictionary.au3' 9=_IniReadSectionToObjDict($oDICT, $PathINI, $SECTION) Liest die angegebene INI-Sektion in das Objekt; #include 'objDictionary.au3' 10=_IniWriteSectionFromObjDict($oDICT, $PathINI, $SECTION) Schreibt die Schlüssel-Wert Paare des Objekts in die angegebene Sektion der INI-Datei; #include 'objDictionary.au3' 11=_FileReadToObjDict($oDICT, $PathFile, $SEPERATOR='|') Liest aus einer Textdatei alle Schlüssel-Wert Paare zeilenweise ein (1 Paar/Zeile); #include 'objDictionary.au3' 12=_FileWriteFromObjDict($oDICT, $PathFile, $SEPERATOR='|', $OVERWRITE=True) Schreibt die Schlüssel-Wert Paare des Objekts in die angegebene Datei (1 Paar/Zeile), $OVERWRITE='TRUE' überschreibt, 'False' hängt an; #include 'objDictionary.au3' [abbrev_properties] odcr=_ObjDictCreate(|) oda=_ObjDictAdd(|) odgv=_ObjDictGetValue(|) odsv=_ObjDictSetValue(|) odc=_ObjDictCount(|) ods=_ObjDictSearch(|) oddk=_ObjDictDeleteKey(|) odl=_ObjDictList(|) irstod=_IniReadSectionToObjDict(|) iwsfod=_IniWriteSectionFromObjDict(|) frtod=_FileReadToObjDict(|) fwfod=_FileWriteFromObjDict(|)