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.Shapes
Assembly:
Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public string Name { get; set; }
Public Property Name As String
Get
Set
Property Value
Type:
String
The name of the object.
Implements
IPdfRenderableNameExamples foreach (IPdfRenderable namedGroup in list.FindAll(item => item.Name == "Group") {
ProcessGroup(namedGroup);
}
See Also