Add

Add<TContextObject>(string, string, TContextObject)

Adds an output element for the context object.

public IOutputFile Add<TContextObject>(string path, string templateKey, 
    TContextObject contextObject)
ParameterTypeDescription
pathStringOutput path.
templateKeyStringThe key of the template used for context object transformation before output.
contextObjectTContextObjectContext object.

Return Value

IOutputFile object for the context object.

See Also


Add(string, IPPImage)

Adds an output element for the image.

public IOutputFile Add(string path, IPPImage image)
ParameterTypeDescription
pathStringOutput path.
imageIPPImageImage to output.

Return Value

IOutputFile object for the image.

See Also


Add(string, IImage)

Adds an output element for the image.

public IOutputFile Add(string path, IImage image)
ParameterTypeDescription
pathStringOutput path.
imageIImageImage to output.

Return Value

IOutputFile object for the image.

See Also


Add(string, IVideo)

Adds an output element for the video.

public IOutputFile Add(string path, IVideo video)
ParameterTypeDescription
pathStringOutput path.
videoIVideoVideo to output.

Return Value

IOutputFile object for the video.

See Also


Add(string, IFontData, FontStyleType)

Creates and adds an output file element for the specified font.

public IOutputFile Add(string path, IFontData fontData, FontStyleType fontStyle)
ParameterTypeDescription
pathStringThe file path where the font output will be saved.
fontDataIFontDataThe font data to be written to the output.
fontStyleFontStyleTypeThe style of the font (e.g., Regular, Bold, Italic).

Return Value

An IOutputFile instance for the generated font.

See Also


Add(string, string)

Adds an output element for the text content.

public IOutputFile Add(string path, string textContent)
ParameterTypeDescription
pathStringOutput path.
textContentStringContent to output.

Return Value

IOutputFile object for the text content.

See Also