Class CubeSettings
This class contains settings that will be applied to the Cube component.
Inheritance
System.Object
CubeSettings
Namespace: FastReport.Olap.Utils
Assembly: FastReport.Olap.dll
Syntax
public class CubeSettings
Constructors
CubeSettings()
Initializes a new instance of the CubeSettings class.
Declaration
public CubeSettings()
Properties
DefaultLanguage
Gets or sets the default script language.
Declaration
public Language DefaultLanguage { get; set; }
Property Value
Type | Description |
---|---|
Language |
ShowProgress
Gets or sets a value that determines whether to show the progress window when perform time-consuming operations such as run, print, export.
Declaration
public bool ShowProgress { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
StringEncoding
Gets or sets the encoding to READ String values (they writes always in UTF8). If you migrate from VCL and have cubes with Ansi string fields you need to change string encoding to appropriate CodePage By default encoding = UTF8
Declaration
public Encoding StringEncoding { get; set; }
Property Value
Type | Description |
---|---|
System.Text.Encoding |
Events
FinishProgress
Occurs after closing a progress window.
Declaration
public event EventHandler FinishProgress
Event Type
Type | Description |
---|---|
System.EventHandler |
Progress
Occurs when progress state is changed.
Declaration
public event ProgressEventHandler Progress
Event Type
Type | Description |
---|---|
ProgressEventHandler |
StartProgress
Occurs before displaying a progress window.
Declaration
public event EventHandler StartProgress
Event Type
Type | Description |
---|---|
System.EventHandler |