Skip to end of banner
Go to start of banner

admGetSpaces

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Current »

Description

Takes a category name and returns an array of spaces (CSpace structs) in that category.

Return Type

CSpace []

Returns an array of CSpace structures containing the space properties.

Example

CSpace [] spaces = admGetSpaces("Products");
for(CSpace space in spaces) {
	print(space.name);
}

Prints name of each space in the Products category in the logs.

See also

  • No labels