Click or drag to resize

MamlRenderer Constructor

Initializes a new instance of the MamlRenderer class.

Namespace: Altaxo.Text.Renderers
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public MamlRenderer(
	string projectOrContentFileName,
	string contentFolderName,
	string contentFileNameBase,
	string imageFolderName,
	int splitLevel,
	bool enableHtmlEscape,
	bool autoOutline,
	bool enableLinkToPreviousSection,
	string linkToPreviousSectionLabelText,
	bool enableLinkToNextSection,
	string linkToNextSectionLabelText,
	HashSet<string> imagesFullFileNames,
	Dictionary<string, string> oldToNewImageUris,
	string bodyTextFontFamily,
	double bodyTextFontSize,
	bool isIntendedForHelp1File
)

Parameters

projectOrContentFileName  String
The project or content file name used as the rendering base path.
contentFolderName  String
The relative name of the content folder.
contentFileNameBase  String
The base name used for generated content files.
imageFolderName  String
The relative name of the image folder.
splitLevel  Int32
The heading level at which output is split into separate files.
enableHtmlEscape  Boolean
A value indicating whether HTML escaping is enabled.
autoOutline  Boolean
A value indicating whether automatic outlining is enabled.
enableLinkToPreviousSection  Boolean
A value indicating whether a link to the previous section is generated.
linkToPreviousSectionLabelText  String
The label text used for the link to the previous section.
enableLinkToNextSection  Boolean
A value indicating whether a link to the next section is generated.
linkToNextSectionLabelText  String
The label text used for the link to the next section.
imagesFullFileNames  HashSetString
The set collecting the full file names of generated images.
oldToNewImageUris  DictionaryString, String
The mapping from original image URIs to the generated image URIs.
bodyTextFontFamily  String
The font family used for body text rendering.
bodyTextFontSize  Double
The font size used for body text rendering.
isIntendedForHelp1File  Boolean
A value indicating whether the output is intended for a Help 1 file.
See Also