Click or drag to resize

SectionManagerAdd(Boolean, Boolean, Axis) Method

Add Section

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

Parameters

partSection  Boolean
PartSection
visibleOthers  Boolean
Others Section Visible/Hidden
direction  Axis  (Optional)
Direction

Return Value

Section
Section
Example
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