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
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Description
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