Gets or sets whether the style is visible.
Namespace: Autodesk.Civil.DatabaseServices.StylesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 10.5.768.0
Syntax
C# |
---|
public bool Visible { get; set; } |
Visual Basic |
---|
Public Property Visible As Boolean
Get
Set |
Visual C++ |
---|
public:
property bool Visible {
bool get ();
void set (bool value);
} |
Examples
CopyC#
1myAlignmentStyle.GetDisplayStyleModel(AlignmentDisplayStyleType.Arrow).Visible = false;
2myAlignmentStyle.GetDisplayStylePlan(AlignmentDisplayStyleType.Arrow).Visible = false;
See Also