Click or drag to resize

SectionManagerAdd Method (Boolean, Boolean, Axis)

Add Section

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public Section Add(
	bool partSection,
	bool visibleOthers,
	Axis direction = Axis.X
)

Parameters

partSection
Type: SystemBoolean
PartSection
visibleOthers
Type: SystemBoolean
Others Section Visible/Hidden
direction (Optional)
Type: VIZCore3D.NET.DataAxis
Direction

Return Value

Type: Section
Section
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    bool partSection = false;

    VIZCore3D.NET.Data.Section section =
        vizcore3d.Section.Add(
            partSection
            , false
            , Data.Axis.X
            );
}
See Also