combit List & Label 30 - .NET Help
combit.Reporting.Dom Namespace / SumVariable Class
Members Example


SumVariable Class
This class represents a sum variable.
Object Model
SumVariable Class
Syntax
'Declaration
 
Public Class SumVariable 
   Inherits DomItem
 
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 
}
Inheritance Hierarchy

System.Object
   combit.Reporting.Dom.DomItem
      combit.Reporting.Dom.SumVariable

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