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


In This Topic
    SumVariables Property
    In This Topic
    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
    public CollectionSumVariables SumVariables {get;}
    public:
    property CollectionSumVariables^ SumVariables {
       CollectionSumVariables^ get();
    }
    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 7, .NET 8

    See Also