Lists cs CZ - Reetus/ClassicAssist GitHub Wiki

Seznam příkazů ClassicAssist

Generováno na 15.12.2024 3:30:41
Verze: 4.425.22+b9a337759d26b9d39ae8ccaac75a36c4255be94a
PoodyCZ(Dorchaide)

Seznamy

ClearList

Podpis metody:

Void ClearList(System.String)

Parametry

  • listname: Název seznamu.

Popis:

Vyprázdní daný seznam.

Příklad:

ClearList("list")  

CreateList

Podpis metody:

Void CreateList(System.String)

Parametry

  • listname: Název seznamu.

Popis:

Vytvoří seznam s daným názvem, existující seznam bude přepsán.

Příklad:

CreateList("list")  

GetList

Podpis metody:

System.Object[] GetList(System.String)

Parametry

  • listname: Název seznamu.

Popis:

Vrátí všechny elementy seznamu, pro účely cyklů atd.

Příklad:

GetList("list")  

InList

Podpis metody:

Boolean InList(System.String, System.Object)

Parametry

  • listname: Název seznamu.
  • value: Číslo - viz popisek.

Popis:

Zkontroluje element v seznamu.

Příklad:

if InList("shmoo", 1):  

List

Podpis metody:

Int32 List(System.String)

Parametry

  • listname: Název seznamu.

Popis:

Vrátí počet elementů v seznamu.

Příklad:

if List("list") < 5:  

ListExists

Podpis metody:

Boolean ListExists(System.String)

Parametry

  • listname: Název seznamu.

Popis:

Vrátí True pokud seznam existuje.

Příklad:

if ListExists("list"):  

PopList

Podpis metody:

Int32 PopList(System.String, System.Object)

Parametry

  • listname: Název seznamu.
  • elementvalue: Hodnota pro odstranění ze seznamu, nebo 'front' pro odstranění první položky, nebo 'back' pro odstranění poslední položky, výchozí hodnota je 'back'. (Volitelný)

Popis:

Odebere elementy ze seznamu a vrátí počet smazaných

Příklad:

CreateList("hippies")
PushList("hippies", 1)
PushList("hippies", 2)
PushList("hippies", 3)

PopList("hippies", "front") # Smaže 1
PopList("hippies", "back") # Smaže 3
PopList("hippies", "2") # Smaže všechny 2 které v seznamu jsou


for x in GetList("hippies"):
 print x # Nikdy neproběhne protože seznam je prázdný
  

PushList

Podpis metody:

Void PushList(System.String, System.Object)

Parametry

  • listname: Název seznamu.
  • value: Číslo - viz popisek.

Popis:

Přidá hodnotu na konec seznamu, vytvoří nový pokud seznam neexistuje.

Příklad:

PushList("list", 1)  

RemoveList

Podpis metody:

Void RemoveList(System.String)

Parametry

  • listname: Název seznamu.

Popis:

Smaže seznam s daným názvem.

Příklad:

RemoveList("list")