addFromHtml
Contents
[
Hide
]addFromHtml(String htmlText, HtmlExternalResolver resolver, String uri) method
Creates slides from HTML text and adds them to the end of the collection.
Parameters
Name | Type | Description |
---|---|---|
htmlText | String | Html to add. |
resolver | HtmlExternalResolver | A callback object used to fetch external objects. If this parameter is null all external objects will be ignored. |
uri | String | An URI of the specified HTML. Used to resolve relative links. |
Returns
addFromHtml(String htmlText, ExternalResourceResolver resolver, String uri) method
Creates slides from HTML text and adds them to the end of the collection.
Parameters
Name | Type | Description |
---|---|---|
htmlText | String | Html to add. |
resolver | ExternalResourceResolver | A callback object used to fetch external objects. If this parameter is null all external objects will be ignored. |
uri | String | An URI of the specified HTML. Used to resolve relative links. |
Returns
addFromHtml(String htmlText) method
Creates slides from HTML text and adds them to the end of the collection.
Parameters
Name | Type | Description |
---|---|---|
htmlText | String | Html to add. |
Returns
addFromHtml(InputStream htmlStream, HtmlExternalResolver resolver, String uri) method
Creates slides from HTML text and adds them to the end of the collection.
Parameters
Name | Type | Description |
---|---|---|
htmlStream | InputStream | A Stream object which will be used as a source of a HTML file. |
resolver | HtmlExternalResolver | A callback object used to fetch external objects. If this parameter is null all external objects will be ignored. |
uri | String | An URI of the specified HTML. Used to resolve relative links. |
Returns
addFromHtml(InputStream htmlStream, ExternalResourceResolver resolver, String uri) method
Creates slides from HTML text and adds them to the end of the collection.
Parameters
Name | Type | Description |
---|---|---|
htmlStream | InputStream | A Stream object which will be used as a source of a HTML file. |
resolver | ExternalResourceResolver | A callback object used to fetch external objects. If this parameter is null all external objects will be ignored. |
uri | String | An URI of the specified HTML. Used to resolve relative links. |
Returns
addFromHtml(InputStream htmlStream) method
Creates slides from HTML text and adds them to the end of the collection.
Parameters
Name | Type | Description |
---|---|---|
htmlStream | InputStream | A Stream object which will be used as a source of a HTML file. |