Gets pager template.

Namespace: MonoSoftware.MonoX.Extensions
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static Control GetPagerTemplate(
	this Control control,
	string templateName
)
Visual Basic
<ExtensionAttribute> 
Public Shared Function GetPagerTemplate ( 
	control As Control,
	templateName As String
) As Control
Visual C++
public:
[ExtensionAttribute]
static Control^ GetPagerTemplate(
	Control^ control, 
	String^ templateName
)
F#
static member GetPagerTemplate : 
        control : Control * 
        templateName : string -> Control 

Parameters

control
Type: System.Web.UI..::..Control
Control
templateName
Type: System..::..String
Template name

Return Value

Type: Control
Pager template control

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Control. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also