Indicates if the effect 'effect' related to the sub-symbol named 'subName' that represents the element type is set.
[Visual Basic 6.0] Function IsSubSymbolEffectSet(
ByVal subName As String, _
ByVal effect As esriNgSubSymbolEffect _
) As Boolean
[Visual Basic .NET] Public Function IsSubSymbolEffectSet ( _ ByVal subName As String, _ ByVal effect As esriNgSubSymbolEffect _ ) As Boolean
[C#] public bool IsSubSymbolEffectSet ( string subName, esriNgSubSymbolEffect effect );
[Java] public Boolean isSubSymbolEffectSet ( String subName, esriNgSubSymbolEffect effect ) throws IOException, AutomationException
[C++] HRESULT IsSubSymbolEffectSet( BSTR subName, esriNgSubSymbolEffect effect, VARIANT_BOOL* isSet );
Parameters
subName [in]
subName is a parameter of type BSTR
effect [in]
effect is a parameter of type esriNgSubSymbolEffect
isSet [out, retval]
isSet is a parameter of type VARIANT_BOOL
Sub-symbols effects can be set:
- Either through ArcGIS Schematics Designer, when defining the graphic effects for the element type itself (when the element type is a group) or for one of its element type ancestors which is a group itself (when the element type is not a group),
- Or, by calling the INgElementType SetSubSymbolEffect method in the project code.
INgElementType Interface | INgElementType.GetSubSymbolEffect Method | INgElementType.RemoveSubSymbolEffect Method