Asp.net, vb.net, C#.net Resources
Welcome to Asp.net, vb.net, C#.net Resources
Sign in
|
Join
|
Help
in
Controls (forum)
FAQs (group)
(Entire Site)
Search
Home
Blogs
Forums
Downloads
Asp.net, vb.net, C#.net Resour...
»
FAQs
»
asp.net Faqs
»
Controls
»
Re: How to set the vertical align of a TableCell programmatically?
How to set the vertical align of a TableCell programmatically?
Last post 08-25-2006, 6:10 AM by
Webdeveloper
. 1 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
08-21-2006, 9:07 AM
472
Webdeveloper
Joined on 08-19-2006
Posts 1,589
How to set the vertical align of a TableCell programmatically?
Reply
Quote
How to set the vertical align of a TableCell programmatically?
Report abuse
08-25-2006, 6:10 AM
865
in reply to
472
Webdeveloper
Joined on 08-19-2006
Posts 1,589
Re: How to set the vertical align of a TableCell programmatically?
Reply
Quote
VB.NET
Dim tbl As New TableCell()
'VerticalAlign is enumeration in System.Web.UI.WebControls namespace
tbl.VerticalAlign = VerticalAlign.Top
C#
TableCell tbl=new TableCell();
//VerticalAlign is enumeration in System.Web.UI.WebControls namespace
tbl.VerticalAlign = VerticalAlign.Top;
Report abuse
Powered by
Megasolutions ltd