Jump to content

Add Paragraph Rule below Text


dbarbee

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...