This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > IR > IRepresentationRenderer Interface > IRepresentationRenderer.DrawInvisible Property (ArcObjects .NET 10.4 SDK) |
Indicates whether or not invisible representations will be drawn.
[Visual Basic .NET] Public Property DrawInvisible As Boolean
[C#] public bool DrawInvisible {get; set;}
[C++]
HRESULT get_DrawInvisible(
VARIANT_BOOL* Draw
);
[C++]
HRESULT put_DrawInvisible(
VARIANT_BOOL Draw
);
[C++]
Parameters Draw [out, retval] Draw is a parameter of type VARIANT_BOOL Draw [in] Draw is a parameter of type VARIANT_BOOL
DrawInvisible is a boolean that indicates if invisible feature representations will be drawn or not. To change the visibility property use IRepresentaionClass::GraphicAttributes.
For example, if pRepClass is a reference to a representation class then the Viibility property for all its features can be managed as follows:
Dim pGA As IGraphicAttributes
Set pGA=pRepClass.GraphicAttributes
pGA.Value(0) = False 'Make invisible