By using TypeOf, I could tell a symbol is a Marker Line Symbol. Can I use the same trick (something as follow) to check whether this Marker Line Symbol is build up from which type of Marker Symbol?
If TypeOf pSbl Is IMarkerLineSymbol Then MsgBox "It is a Marker Line Symbol"
If TypeOf pSbl Is ICharacterMarkerSymbol Then MsgBox "It is a Character Marker Symbol" elseif TypeOf pSbl Is IPictureMarkerSymbol Then MsgBox "It is a Picture Marker Symbol" End if End If
Yes, there's a MarkerSymbol property inside the MarkerLineSymbol. By checking the symbol type of the MarkerSymbol using TypeOf, I'm able to check which type of marker symbol the MarkerLineSymbol is built on.