SlideText

Create slide text.

Syntax

slidetext=SlideText(slide)

Arguments

height
The slide text height value as a percentage.
Type = double
slidetext.height=<height>
name
The slide text name.
Type = string
slidetext.name=<'name'>
position
The slide image position as a list [<x>,<y>,<width>,<height>].
Type = list
slidetext.position=[5,10,20,50]
session
The report session where the text is located (read only).
Type = object
sesObj = slidetext.session
setAttributes()
Set multiple attributes simultaneously.
Type = method
slidetext.setAttributes(name=<name>, session='ReportSession1')
text
The text displayed in the slide text.
Type = string
slidetext.text=<'text'>
width
The slide text width value as a percentage.
Type = double
slidetext.width=<width
x
The slide text x value of the upper left corner as a percentage.
Type = double
slidetext.x=<x>
y
The slide text y value of the upper left corner as a percentage.
Type = double
slidetext.y=<y>

Example

slidetext = Slidetext(slide=<slide>, text='Demo Slide text, name='SlideText1')
slidetext.position=[5,10,20,50]