1 2 3 4 5 6 7 8 9 10 11 12 13
| f.Shapes(NomShape).Fill.ForeColor.RGB = RGB(221, 217, 195)
f.Shapes(NomShape).TextFrame.Characters.Text = TextVrai
f.Shapes(NomShape).TextFrame.Characters(Start:=1, Length:=LongText).Font.Bold = False
f.Shapes(NomShape).TextFrame.Characters(Start:=1, Length:=LongText).Font.Color = RGB(0, 0, 0)
f.Shapes(NomShape).TextFrame.Characters(Start:=1, Length:=LongText).Font.Size = 12
'Dimmensionnement en point
f.Shapes(NomShape).Height = 14
f.Shapes(NomShape).Width = 50
'On repositionne à la place par défaut car pas de bouton à gérer
f.Shapes(NomShape).Top = ValTop
f.Shapes(NomShape).Left = ValLeft |
Partager