Category:

Report related

Returns the value of the specified property of any report object.

Syntax

internal_property(
  PropertyName Numeric
): String

Parameters

PropertyName is name of the property which value to return. Should be specified in ObjectName.PropertyName form. If the ObjectName. prefix is omitted, then Report. prefix will be used.

Return value

Type: String.

Examples of using

'Report author: ' + internal_property('Report.Author')
'Paper size: ' + internal_property('Page.PaperSizeName')
internal_property('Label12.Text') {returns the text of the report's Label12 object}
internal_property('DBText1.Left') {returns the horizontal coordinate of the left edge of the report's DBText1 object relative to its parent}