Functions for manipulating and retrieving information about the scene list. More...
Public Member Functions | |
| string | Get (string category, string entry) |
| Gets the scene path for the specified category and entry. | |
| integer | GetEntryID (string categoryName, string entryName) |
| Gets the entry ID for the specified category and entry name. | |
| integer | GetCategoryID (string categoryName) |
| Gets the category ID for the specified category name. | |
| string | GetEntryName (string category, integer entryID) |
| Gets the entry name for the specified category and entry. | |
| string | GetCategoryName (integer categoryID) |
| Gets the category name for the specified category ID. | |
| string | GetEntryProperty (string category, string entry, string property) |
| Gets a property for an entry. | |
| string | GetCategoryProperty (string category, string property) |
| Gets a property for a category. | |
| boolean | HasEntryProperty (string category, string entry, string property) |
| Checks if a given property exists in the entry. | |
| boolean | HasCategoryProperty (string category, string property) |
| Checks if a given property exists in the category. | |
| integer | GetCategoryCount () |
| Gets the amount of categories in the scene list. | |
| integer | GetSceneCount () |
| Gets the amount of scenes. | |
| integer | GetSceneCount (string categoryName) |
| Gets the amount of scenes in a category. | |
Functions for manipulating and retrieving information about the scene list.
| string SceneList.Get | ( | string | category, |
| string | entry ) |
Gets the scene path for the specified category and entry.
| category | The category. |
| entry | The entry. |
| integer SceneList.GetCategoryCount | ( | ) |
Gets the amount of categories in the scene list.
| integer SceneList.GetCategoryID | ( | string | categoryName | ) |
Gets the category ID for the specified category name.
| categoryName | The category name. |
| string SceneList.GetCategoryName | ( | integer | categoryID | ) |
Gets the category name for the specified category ID.
| categoryID | The category ID. |
| string SceneList.GetCategoryProperty | ( | string | category, |
| string | property ) |
Gets a property for a category.
| category | The category. |
| property | The property. |
| integer SceneList.GetEntryID | ( | string | categoryName, |
| string | entryName ) |
Gets the entry ID for the specified category and entry name.
| categoryName | The category name. |
| entryName | The entry name. |
| string SceneList.GetEntryName | ( | string | category, |
| integer | entryID ) |
Gets the entry name for the specified category and entry.
| category | The category. |
| entryID | The entry ID. |
| string SceneList.GetEntryProperty | ( | string | category, |
| string | entry, | ||
| string | property ) |
Gets a property for an entry.
| category | The category. |
| entry | The entry. |
| property | The property. |
| integer SceneList.GetSceneCount | ( | ) |
Gets the amount of scenes.
| integer SceneList.GetSceneCount | ( | string | categoryName | ) |
Gets the amount of scenes in a category.
| categoryName | The category name. |
| boolean SceneList.HasCategoryProperty | ( | string | category, |
| string | property ) |
Checks if a given property exists in the category.
| category | The category. |
| property | The property. |
| boolean SceneList.HasEntryProperty | ( | string | category, |
| string | entry, | ||
| string | property ) |
Checks if a given property exists in the entry.
| category | The category. |
| entry | The entry. |
| property | The property. |