Table Constructor(IHtmlHelper)
In This Topic
Creates one
Table instance.
Syntax
'Declaration
Public Function New( _
ByVal As Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper _
)
'Usage
Dim helper As Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper
Dim instance As New Table(helper)
public Table(
Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper
)
public Table(
: Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper
);
public function Table(
: Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper
);
public: Table(
Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper*
)
public:
Table(
Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper^
)
Parameters
- helper
- The HtmlHelper instance.
See Also