combit List & Label 30 - .NET Help
combit.Reporting.Dom Namespace / ProjectBase Class / SumVariables Property
Example


SumVariables Property
This collection contains the sum variables of the current project. It can also be used to add new sum variables to the project.
Syntax
'Declaration
 
Public ReadOnly Property SumVariables As CollectionSumVariables
 
Example
// add new sum variable 
SumVariable sumVar = new SumVariable(proj.SumVariables);  
  
// set sum variable options 
sumVar.Name = "@Sum01";  
sumVar.Contents = "1234";  
sumVar.IsPageSum = "True";  
   
// iterate all sum variables 
foreach(SumVariable sumVariable in proj.SumVariables)  
{  
    string sumVarName = sumVariable.Name  
}
Requirements

Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
.NET: .NET Framework 4.8, .NET 6, .NET 8, .NET 9

See Also