TemplateGroup Constructors

Definition

Initializes a new instance of the TemplateGroup class.

Overloads

TemplateGroup(String)

Initializes a new instance of the TemplateGroup class, using the provided name.

TemplateGroup(String, Style)

Initializes a new instance of the TemplateGroup class, using the provided name and style.

TemplateGroup(String)

Initializes a new instance of the TemplateGroup class, using the provided name.

public:
 TemplateGroup(System::String ^ groupName);
public TemplateGroup (string groupName);
new System.Web.UI.Design.TemplateGroup : string -> System.Web.UI.Design.TemplateGroup
Public Sub New (groupName As String)

Parameters

groupName
String

The name of the group.

See also

Applies to

TemplateGroup(String, Style)

Initializes a new instance of the TemplateGroup class, using the provided name and style.

public:
 TemplateGroup(System::String ^ groupName, System::Web::UI::WebControls::Style ^ groupStyle);
public TemplateGroup (string groupName, System.Web.UI.WebControls.Style groupStyle);
new System.Web.UI.Design.TemplateGroup : string * System.Web.UI.WebControls.Style -> System.Web.UI.Design.TemplateGroup
Public Sub New (groupName As String, groupStyle As Style)

Parameters

groupName
String

The name of the group.

groupStyle
Style

A Style object to be applied to templates in the group.

See also

Applies to