Click or drag to resize

IPdfRenderableName Property

Gets or sets the name of the object. The use of this property is not dictated by the PDF Authoring API. It is in place as a convenience for client code where it could be used for creating named objects in PDF content for later retrieval/editing.

Namespace:  Atalasoft.PdfDoc.Generating.Rendering
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
string Name { get; set; }

Property Value

Type: String
The name of the object.
Examples
foreach (IPdfRenderable namedGroup in list.FindAll(item => item.Name == "Group") {
   ProcessGroup(namedGroup);
}
See Also