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


InsertFromHtml(int, string, bool)

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

public ISlide[] InsertFromHtml(int index, string htmlText, bool useSlideWithIndexAsStart)
ParameterTypeDescription
indexInt32Position to insert.
htmlTextStringHtml to add.
useSlideWithIndexAsStartBooleanThis flag determines how to start insertion: from a new slide or from the slide with the specified index. If true, then data insertion will start from an empty space on the slide with the specified index. If false, then data will be added to the created slides.

Return Value

Added slides

See Also


InsertFromHtml(int, string, IExternalResourceResolver, string, bool)

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, bool useSlideWithIndexAsStart)
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.
useSlideWithIndexAsStartBooleanThis flag determines how to start insertion: from a new slide or from the slide with the specified index. If true, then data insertion will start from an empty space on the slide with the specified index. If false, then data will be added to the created slides.

Return Value

Added slides.

See Also


InsertFromHtml(int, Stream, bool)

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

public ISlide[] InsertFromHtml(int index, Stream htmlStream, bool useSlideWithIndexAsStart)
ParameterTypeDescription
indexInt32Position to insert.
htmlStreamStreamA Stream object which will be used as a source of a HTML file.
useSlideWithIndexAsStartBooleanThis flag determines how to start insertion: from a new slide or from the slide with the specified index. If true, then data insertion will start from an empty space on the slide with the specified index. If false, then data will be added to the created slides.

Return Value

Added slides

See Also


InsertFromHtml(int, Stream, IExternalResourceResolver, string, bool)

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, bool useSlideWithIndexAsStart)
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.
useSlideWithIndexAsStartBooleanThis flag determines how to start insertion: from a new slide or from the slide with the specified index. If true, then data insertion will start from an empty space on the slide with the specified index. If false, then data will be added to the created slides.

Return Value

Added slides.

See Also