read_presentation method

read_presentation

Reads an existing presentation from array

Returns

Read presentation

def read_presentation(self, data):
    ...
ParameterTypeDescription
databytesArray to read

read_presentation

Reads an existing presentation from stream

Returns

Read presentation

def read_presentation(self, stream):
    ...
ParameterTypeDescription
streamio.RawIOBaseInput stream to read

read_presentation

Reads an existing presentation from file

Returns

Read presentation

def read_presentation(self, file):
    ...
ParameterTypeDescription
filestrFile name

read_presentation

Reads an existing presentation from array with additional load options

Returns

Read presentation

def read_presentation(self, data, options):
    ...
ParameterTypeDescription
databytesArray to read
optionsILoadOptionsLoad options

read_presentation

Reads an existing presentation from stream with additional load options

Returns

Read presentation

def read_presentation(self, stream, options):
    ...
ParameterTypeDescription
streamio.RawIOBaseInput stream to read
optionsILoadOptionsLoad options

read_presentation

Reads an existing presentation from stream with additional load options

Returns

Read presentation

def read_presentation(self, file, options):
    ...
ParameterTypeDescription
filestrFile name
optionsILoadOptionsLoad options

See Also