Article Details
| Id: | 14284 |
| Product: | finPOWER Connect |
| Type: | NEW |
| Version: | 3.00.04 |
| Opened: | 19/12/2016 |
| Closed: | 16/01/2017 |
| Released: | 01/03/2017 |
| Job: | J018418 |
Summary Pages; Version 2; New "Address" HTML Template
A new "Address" HTML Template has been added.
This can be used as follows:
Dim AddressDetails As ISAddressDetailsDim SummaryTable As ISSummaryTableAddressDetails = finBL.CreateAddressDetails()With AddressDetails.StreetAddressFull = "1 Oak Road".Suburb = "Taradale".City = "Napier".Postcode = "4000".Country = "New Zealand"End WithSummaryTable = finBL.CreateSummaryTable()With SummaryTable.TableClass = iseSummaryTableClass.TabularDataWith .Columns.AddText("Name").AddText("Addresses")End WithWith .Rows.Add().Cells.AddText("John Smith")With .AddText("").Value &= "{{address addressDetailsXml='" & AddressDetails.ToXmlString() & "' singleLine='false' physicalFormat='false'}}" & vbNewLine & vbNewLine.Value &= "{{address streetAddress='14 Clover Avenue' city='Hastings' postcode='4000' singleLine='true' physicalFormat='true'}}" & vbNewLine & vbNewLineEnd WithEnd WithEnd With