Answers for "vba add shape oval"

VBA
0

vba add shape oval

Sub LeCercle()
  Dim Rayon As Single
  Rayon = 50
  ActiveSheet.Shapes.AddShape msoShapeOval, [C3].Left, [C3].Top, Rayon, Rayon
End Sub
Posted by: Guest on February-02-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language