/// <summary> /// Initializes a new instance of the <see cref="Total"/> class with default settings. /// </summary> public Total() { FExpression = ""; FEvaluateCondition = ""; FResetAfterPrint = true; FSubTotals = new TotalCollection(null); SetFlags(Flags.CanCopy, false); }
/// <summary> /// Initializes a new instance of the <see cref="Total"/> class with default settings. /// </summary> public Total() { expression = ""; evaluateCondition = ""; resetAfterPrint = true; subTotals = new TotalCollection(null); parentTotal = new TotalCollection(null); SetFlags(Flags.CanCopy, false); }
/// <summary> /// Initializes a new instance of the <see cref="Dictionary"/> class with default settings. /// </summary> public Dictionary() { FConnections = new ConnectionCollection(this); FDataSources = new DataSourceCollection(this); FRelations = new RelationCollection(this); FParameters = new ParameterCollection(this); FSystemVariables = new SystemVariables(this); FTotals = new TotalCollection(this); FRegisteredItems = new List <RegDataItem>(); }
/// <summary> /// Initializes a new instance of the <see cref="Dictionary"/> class with default settings. /// </summary> public Dictionary() { connections = new ConnectionCollection(this); dataSources = new DataSourceCollection(this); relations = new RelationCollection(this); parameters = new ParameterCollection(this); systemVariables = new SystemVariables(this); totals = new TotalCollection(this); cubeSources = new CubeSourceCollection(this); registeredItems = new List <RegDataItem>(); }