Layout

Handles report layouts.

Syntax

reportSesson.getLayouts()

Arguments

name
The layout name.
Type = string
layout.name
getPlaceholderInfo
Returns a list of the placeholder types and the positions.
Type = method

Example

from hw.report.types import *
import os
session = ReportSession(name='MyReportSession')
for layout in session.getLayouts():
    print('Layout = '+layout.name)
    print('Placeholders:')
    print(layout.getPlaceholderInfo())
    print('--------------------')