Click or drag to resize

SectionManagerAdd Method (Boolean, Boolean, Axis)

Add Section

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

Parameters

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

Return Value

Type: SectionItem
SectionItem
Examples
C#
// VIZCore3DX.NET Control
private VIZCore3DX.NET.VIZCore3DXControl vizcore3dx;

private void Example()
{
    bool partSection = false;

    VIZCore3DX.NET.Data.SectionItem section =
        vizcore3dx.Section.Add(
            partSection
            , false
            , Data.Axis.X
            );
}
See Also