Answers for "vba with"

VBA
0

vba with

With MyObject 
 .Height = 100 ' Same as MyObject.Height = 100. 
 .Caption = "Hello World" ' Same as MyObject.Caption = "Hello World". 
 With .Font 
  .Color = Red ' Same as MyObject.Font.Color = Red. 
  .Bold = True ' Same as MyObject.Font.Bold = True. 
 End With
End With
Posted by: Guest on January-22-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language