Cubes > Cubes Assembly Interfaces > IStandardCube > IStandardCube.Destinations
Destinations: IStandardCubeDestinations;
The Destinations property returns the collection of display versions of standard cube.
Executing the example requires that the repository contains a standard cube with the STD_CUBE identifier.
Sub UserProc;
Var
MB: IMetabase;
StdCube: IStandardCube;
Dests: IStandardCubeDestinations;
Dest: IStandardCubeDestination;
Begin
MB := MetabaseClass.Active;
StdCube := MB.ItemById("STD_CUBE").Bind As IStandardCube;
Dests := StdCube.Destinations;
For Each Dest In Dests Do
Debug.WriteLine(Dest.Name);
End For;
End Sub UserProc;
After executing the example the development environment console displays names of cube display versions.
See also: