Obviously if you have 2003 or earlier the easiest way is to use the macro
recorder to get the syntax. However many do not have access to older
versions so the suggestion I gave can get you a long way. I could have added
a few more tips, eg for what you were looking for start with something like
this
' manually select the axis or object you are interested in
debug Typename(selection) ' eg Axis
' then
Dim ax As Axis
Set ax = Selection
' manually type
ax. ' after the dot look at the intellisense
hmm, wonder what .Ticklabels is, lets try
Dim tls as TickLabels
Set tls = ax.TickLabels
' type
tls. ' after the dot
hmm, wonder what .Orientation is, looks promising
tls.Orientation = ' ahHa! all the intellisense is there
tls.Orientation = xlTickLabelOrientationDownward
bingo, that was easy, who needs the macro recorder !
Didn't even need to bother highlighting Ticklabels or Orientation and press
F1
Alternatively maybe -
set obj = selection
Stop
' look in locals, Alt-v,s almost everything about the object is in full
view.
Keep in mind a lot of new properties were introduced in 2007, the macro
recorder in earlier versions will not help. I know you think the suggestion
is "functionally not helpful" but I can only suggest you persevere, it's
what others have done. Or simply ask here if stuck.
Regards,
Peter T