EditableDocumentGetContent Method (String, String) |
Returns overall content of the HTML document as a string, where links to the external resources contain specified prefix.
Namespace: GroupDocs.EditorAssembly: GroupDocs.Editor (in GroupDocs.Editor.dll) Version: 20.12.0.0
Syntaxpublic string GetContent(
string externalImagesPrefix,
string externalCssPrefix
)
Public Function GetContent (
externalImagesPrefix As String,
externalCssPrefix As String
) As String
public:
String^ GetContent(
String^ externalImagesPrefix,
String^ externalCssPrefix
)
member GetContent :
externalImagesPrefix : string *
externalCssPrefix : string -> string
Parameters
- externalImagesPrefix
- Type: SystemString
Through this parameter used can specify a prefix, which will be added to the links
to all external images in IMG elements, which will be present in the resultant HTML string. If NULL or empty, prefixes will not be added. - externalCssPrefix
- Type: SystemString
Through this parameter used can specify a prefix, which will be added to the links
to all external stylesheets in LINK elements, which will be present in the resultant HTML string. If NULL or empty, prefixes will not be added.
Return Value
Type:
StringString, which contains the content of the HTML document with links, adjusted to the external resources
See Also