Gets or sets whether the style is visible.
Namespace: Autodesk.Civil.DatabaseServices.Styles
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.280
Syntax
C#
public bool Visible { get; set; }
VB
Public Property Visible As Boolean Get Set
C++
public: property bool Visible { bool get (); void set (bool value); }
Property Value
BooleanExample
1myAlignmentStyle.GetDisplayStyleModel(AlignmentDisplayStyleType.Arrow).Visible = false; 2myAlignmentStyle.GetDisplayStylePlan(AlignmentDisplayStyleType.Arrow).Visible = false;