InsertFromHtml

InsertFromHtml(int, string, IExternalResourceResolver, string)

Creates slides from HTML text and inserts them to the collection at the specified position.

public ISlide[] InsertFromHtml(int index, string htmlText, IExternalResourceResolver resolver, 
    string uri)
ParameterTypeDescription
indexInt32Position to insert.
htmlTextStringHtml to add.
resolverIExternalResourceResolverA callback object used to fetch external objects. If this parameter is null all external objects will be ignored.
uriStringAn URI of the specified HTML. Used to resolve relative links.

Return Value

Added slides.

See Also


InsertFromHtml(int, string)

Creates slides from HTML text and inserts them to the collection at the specified position.

public ISlide[] InsertFromHtml(int index, string htmlText)
ParameterTypeDescription
indexInt32Position to insert.
htmlTextStringHtml to add.

Return Value

Added slides

See Also


InsertFromHtml(int, TextReader, IExternalResourceResolver, string)

Creates slides from HTML text and inserts them to the collection at the specified position.

public ISlide[] InsertFromHtml(int index, TextReader htmlReader, 
    IExternalResourceResolver resolver, string uri)
ParameterTypeDescription
indexInt32Position to insert.
htmlReaderTextReaderTextReader object which will be used as a source of a HTML file.
resolverIExternalResourceResolverA callback object used to fetch external objects. If this parameter is null all external objects will be ignored.
uriStringAn URI of the specified HTML. Used to resolve relative links.

Return Value

Added slides.

See Also


InsertFromHtml(int, TextReader)

Creates slides from HTML text and inserts them to the collection at the specified position.

public ISlide[] InsertFromHtml(int index, TextReader htmlReader)
ParameterTypeDescription
indexInt32Position to insert.
htmlReaderTextReaderTextReader object which will be used as a source of a HTML file.

Return Value

Added slides

See Also


InsertFromHtml(int, Stream, IExternalResourceResolver, string)

Creates slides from HTML text and inserts them to the collection at the specified position.

public ISlide[] InsertFromHtml(int index, Stream htmlStream, IExternalResourceResolver resolver, 
    string uri)
ParameterTypeDescription
indexInt32Position to insert.
htmlStreamStreamA Stream object which will be used as a source of a HTML file.
resolverIExternalResourceResolverA callback object used to fetch external objects. If this parameter is null all external objects will be ignored.
uriStringAn URI of the specified HTML. Used to resolve relative links.

Return Value

Added slides.

See Also


InsertFromHtml(int, Stream)

Creates slides from HTML text and inserts them to the collection at the specified position.

public ISlide[] InsertFromHtml(int index, Stream htmlStream)
ParameterTypeDescription
indexInt32Position to insert.
htmlStreamStreamA Stream object which will be used as a source of a HTML file.

Return Value

Added slides

See Also