Class CubeInfo
A CubeInfo class extracts the cube attribute informations after a successful connection has been made with the local or off-line cube.
Inheritance
Inherited Members
Namespace: Syncfusion.Olap.Data
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class CubeInfo
Remarks
A CubeInfo is created in AdomdProvider while browsing through all the cubes available in AdomdProvider with the current connection.
Constructors
CubeInfo(String, String, String)
Initializes a new instance of the CubeInfo class.
Declaration
public CubeInfo(string name, string caption, string description)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the cube. |
System.String | caption | The caption of the cube. |
System.String | description | The description of the cube. |
Properties
Caption
Gets or sets the caption of the cube.
Declaration
public string Caption { get; set; }
Property Value
Type | Description |
---|---|
System.String | The caption of the cube. |
Description
Gets or sets the description of the cube.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String | The description of the cube. |
Name
Gets or sets the name of the cube.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the cube. |
Properties
Gets or sets the collection of properties.
Declaration
public PropertyCollection Properties { get; }
Property Value
Type | Description |
---|---|
PropertyCollection | The property collection. |
Visible
Gets or sets a value indicating whether the cube is visible or not.
Declaration
public bool Visible { get; set; }
Property Value
Type |
---|
System.Boolean |
Methods
ToString()
Returns a System.String that represents the current System.Object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents the current System.Object. |