Layout
Handles report layouts.
Syntax
reportSesson.getLayouts()
Arguments
- name
- The layout name.
- getPlaceholderInfo
- Returns a list of the placeholder types and the positions.
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('--------------------')