get the txt of wordArt with VBA (C++ code)
C / C++ / MFC
4
Posts
3
Posters
0
Views
1
Watching
-
does anyone know how to get the text of WordArt with VBA or C++ ========================================================= additional : what kind of object is WordArt? inlineshape? shape? or something else. 3ks very much.
-
does anyone know how to get the text of WordArt with VBA or C++ ========================================================= additional : what kind of object is WordArt? inlineshape? shape? or something else. 3ks very much.
With VBA :
Sub GetT()
Dim sh As ShapeFor Each sh In ActiveSheet.Shapes
'// msoTextEffect
If sh.Type = 15 Then
MsgBox sh.TextEffect.Text
End If
NextEnd Sub