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


CollectionTemplates Class
This collection contains the templates used by the current project. It can also be used to add additional project templates.
This collection contains the templates used by the current project. It can also be used to add additional project templates.
Object Model
CollectionTemplates ClassTemplate Class
Syntax
'Declaration
 
Public Class CollectionTemplates 
   Inherits combit.Reporting.Dom.DomCollectionBase(Of Template)
 
Example
// add new template to project
Template newProjTempl = new Template(proj.ProjectTemplates);
newProjTempl.FileName  = @"c:\temp\proj.lst";


// iterate all templates
foreach (Template templ in proj.Templates)
{
    string templName = templ.FileName;
}

 

Inheritance Hierarchy
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