ISProfileForm.ReportPrintSettings

Description

The print settings for the form.

Syntax

object.ReportPrintSettings

Part Attribute Type Description
object Required
The object always implements the ISProfileForm interface
Restriction: This property is readonly.

Return Value

ISReportPrintSettings

Example

Display some information about the form and its print settings.

Dim aForm
Dim aFormInfo
Dim aPrintSettings

Set aForm = Profile.Form
set aPrintSettings = aForm.ReportPrintSettings
aFormInfo =_
  "Short Name: " & aForm.ShortName & vbNewLine &_
  "TypeName: " & aForm.TypeName & vbNewLine &_   
  "Form Report Title: " & aForm.FormReportTitle & vbNewLine &_   
  "Footer Left Text: " & aPrintSettings.FooterLeftText & vbNewLine &_   
  "Footer Right Text: " & aPrintSettings.FooterRightText & vbNewLine &_   
  "Footer State: " & aPrintSettings.FooterState & vbNewLine &_   
  "Footer Center Text: " & aPrintSettings.FooterCenterText
                            
Profile.MsgBox(aFormInfo)  
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Report Print Settings cannot be found.

Version information

Added in v7.8.0