Jump to content

Add Paragraph Rule below Text


Recommended Posts

You can make a table containing one cell with a border on the top.

 

Thanks Dan! I did not know of FusionPro's ability to create tables!

 

I see examples in the documentation using static, "Formatted Text" Resources. What's the easiest way to create tables with variables? Do you have a sample document available somewhere?

Link to comment
Share on other sites

Thanks Dan! I did not know of FusionPro's ability to create tables!

 

I see examples in the documentation using static, "Formatted Text" Resources. What's the easiest way to create tables with variables? Do you have a sample document available somewhere?

The Frodo Travel tutorial has some examples of tables. But all you need to do is this:

var table = new FPTable;
table.AddColumns(10000); // set width here
table.AddRow();
table.Rows[0].Cells[0].SetBorders("Thick", "Black", "Top");
return table.MakeTags();

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...