ArcObjects Library Reference (GeoDatabase)  

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