Click or drag to resize

PdfResourceManagerTRemove Method

Removes the resource of the specified name. Throws an ArgumentException if name is not present.

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 Remove(
	string name
)

Parameters

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

Return Value

Type: T
The resource associated with name.
Examples
PdfFontResource resource = globalResources.Fonts.Remove("titlefont");
resource.Dispose(); // dispose this if it's no longer needed.
See Also