The print settings for the form.
object.ReportPrintSettings
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfileForm interface |
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)
In Profile Client v8 on User Interface Report Print Settings cannot be found.