Given an ISymbol, how do I know if it's a an ICartographicLineSymbol or ICharacterMarkerSymbol?
I tried using the "is" C# keyword....
if(mysymbol is ICartographicLineSymbol) {
} else if(mysymbol is ICharacterMarkerSymbol) {
}
But it doesn't work.
It does work with ISimpleFillSymbol however.
Any suggestions ?
I tried using the "is" C# keyword....
if(mysymbol is ICartographicLineSymbol) {
} else if(mysymbol is ICharacterMarkerSymbol) {
}
But it doesn't work.
It does work with ISimpleFillSymbol however.
Any suggestions ?