Click or drag to resize

PdfResourceManagerTGet Method

Gets a resource with the given name. Throws an exception if there is no resource present with that name.

Namespace:  Atalasoft.PdfDoc.Generating.ResourceHandling
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public T Get(
	string name
)

Parameters

name
Type: SystemString
The name of the resource to get.

Return Value

Type: T
The found resource
Examples
PdfFontResource font = globalResources.Get("plainfont0");
See Also