PPT Slide
-
- Methods may or may not return a value
-
- The syntax of using properties is
Object.property = some value
Variable = object.property
Eg. Selection.value = 45
Currentcol = Range(“a5”).column
- The syntax of using methods is
Variable = Object.method [(arguments)]
Eg. Set currcell = Selection.Offset(1,1)