Shape.Name Property
When a shape is created, Microsoft PowerPoint automatically assigns it a name in the form ShapeType Number, where ShapeType identifies the type of shape or AutoShape, and Number is an integer that's unique within the collection of shapes on the slide. For example, the automatically generated names of the shapes on a slide could be Placeholder 1, Oval 2, and Rectangle 3. To avoid conflict with automatically assigned names, don't use the form ShapeType Number for user-defined names, where ShapeType is a value that is used for automatically generated names, and Number is any positive integer. A shape range must contain exactly one shape. Read/write.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Property Name As String
Get
Set
'Usage
Dim instance As Shape
Dim value As String
value = instance.Name
instance.Name = value
string Name { get; set; }
Property Value
Type: System.String
String
Remarks
You can use the object's name in conjunction with the Item method to return a reference to the object if the Item method for the collection that contains the object takes a Variant argument. For example, if the value of the Name property for a shape is Rectangle 2, then .Shapes("Rectangle 2") will return a reference to that shape.
Examples
This example sets the name of object two on slide one in the active presentation to "big triangle."
ActivePresentation.Slides(1).Shapes(2).Name= "big triangle"
This example sets the fill color for the shape named "big triangle" on slide one in the active presentation.
ActivePresentation.Slides(1) _
.Shapes("big triangle").Fill.ForeColor.RGB = RGB(0, 0, 255)