Asp.net, vb.net, C#.net Resources

Welcome to Asp.net, vb.net, C#.net Resources Sign in | Join | Help
in Search

How to set the vertical align of a TableCell programmatically?

Last post 08-25-2006, 6:10 AM by Webdeveloper. 1 replies.
Sort Posts: Previous Next
  •  08-21-2006, 9:07 AM 472

    How to set the vertical align of a TableCell programmatically?

    How to set the vertical align of a TableCell programmatically?
  •  08-25-2006, 6:10 AM 865 in reply to 472

    Re: How to set the vertical align of a TableCell programmatically?

    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;

View as RSS news feed in XML
Powered by Community Server, by Telligent Systems