G Guest Feb 19, 2006 #1 is their a way to rename wordart instead fo it having the defaul name of say wortart 345 regards
T Tom Ogilvy Feb 19, 2006 #2 When you select it, you see the Wortart 345 in the name box. Select that name and type in a new name. Hit enter. Want to do it in code? Activesheet.Shapes("WordArt 2").Name = "MyArt" for a wordart object named WordArt 2
When you select it, you see the Wortart 345 in the name box. Select that name and type in a new name. Hit enter. Want to do it in code? Activesheet.Shapes("WordArt 2").Name = "MyArt" for a wordart object named WordArt 2
N Norman Jones Feb 19, 2006 #3 Hi ME, With the WordArt image selected, enter the desired name in the names box (top, left of the column headers) and hit Enter
Hi ME, With the WordArt image selected, enter the desired name in the names box (top, left of the column headers) and hit Enter
T Tim Williams Feb 19, 2006 #5 Yes - just rename it after inserting it. '************************** ActiveSheet.Shapes.AddTextEffect(msoTextEffect1, "Your Text Here", _ "Arial Black", 36#, msoFalse, msoFalse, 201.75, 242.25).Name = "YourName" '*************************** Tim
Yes - just rename it after inserting it. '************************** ActiveSheet.Shapes.AddTextEffect(msoTextEffect1, "Your Text Here", _ "Arial Black", 36#, msoFalse, msoFalse, 201.75, 242.25).Name = "YourName" '*************************** Tim