This document is archived and information here might be outdated.  Recommended version.


IRepresentationClass.GraphicAttributes Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IR > IRepresentationClass Interface > IRepresentationClass.GraphicAttributes Property
ArcGIS Developer Help

IRepresentationClass.GraphicAttributes Property

General attributes defined at the representation class level.

[Visual Basic .NET]
Public Property GraphicAttributes As IGraphicAttributes
[C#]
public IGraphicAttributes GraphicAttributes {get; set;}
[C++]
HRESULT get_GraphicAttributes(
  IGraphicAttributes** Attributes
);
[C++]
HRESULT putref_GraphicAttributes(
  IGraphicAttributes* Attributes
);
[C++]
Parameters
Attributes [out, retval]

Attributes is a parameter of type IGraphicAttributes** Attributes [in]
Attributes is a parameter of type IGraphicAttributes*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

GraphicAttributes property returns a reference to the graphic attributes present for the representation class namely, visibility. To make changes to this property, use IGraphicAttributes interface. 

Changes made at representation class level are applied to all representations. Individual representation's visibility property can also be overriden using IRepresentation::Value property.

See Also

IRepresentationClass Interface