MCPcopy Create free account
hub / github.com/Distrotech/reportlab / start_presentation

Method start_presentation

tools/pythonpoint/stdparser.py:284–296  ·  view source on GitHub ↗
(self, args)

Source from the content-addressed store, hash-verified

282 self._curSubject = self._curSubject + data
283
284 def start_presentation(self, args):
285 self._curPres = pythonpoint.PPPresentation()
286 self._curPres.filename = self._arg('presentation',args,'filename')
287 self._curPres.effectName = self._arg('presentation',args,'effect')
288 self._curPres.pageDuration = self._arg('presentation',args,'pageDuration')
289
290 h = self._arg('presentation',args,'pageHeight')
291 if h:
292 self._curPres.pageHeight = h
293 w = self._arg('presentation',args,'pageWidth')
294 if w:
295 self._curPres.pageWidth = w
296 #print 'page size =', self._curPres.pageSize
297
298 def end_presentation(self):
299 pass

Callers

nothing calls this directly

Calls 1

_argMethod · 0.95

Tested by

no test coverage detected