Article Details
Id:12201
Product:finPOWER Connect
Type:NEW
Version:2.02.00
Opened:27/08/2014
Closed:01/09/2014
Released:29/09/2014
Job: J013892

Page Sets; Background colour of Form Heading can now be changed

The background colour of the Form Heading can now be changed from a Page Set Script.

The following example shows how to update the Form Heading Colour when a button is clicked.

Public Sub cmdButton1_Click(sender As Object, e As finPageObjectClickEventArgs) Handles cmdButton1.Click

  'psh.FormHeadingColour = "red"
  'psh.FormHeadingColour = "#ff0000"
  
  psh.FormHeadingColour = finBL.ClientFunctions.GetClientStatusColourHtml(isefinClientStatus.Bad, "G")

End Sub

The Page Sets document has been updated to show how to use the FormHeadingColour.