본문으로 건너뛰기

Add

Overloads

NameDescription
Add(bool partSection, Axis direction)Add Section
Add(bool partSection, bool visibleOthers, Axis direction)Add Section

Add(bool partSection, Axis direction)

public Section Add(bool partSection, Axis direction)

Add Section

Parameters

NameTypeDescription
partSectionboolPartSection
directionAxisDirection

Returns

TypeDescription
SectionSection

Examples

// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
bool partSection = false;

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

Add(bool partSection, bool visibleOthers, Axis direction)

public Section Add(bool partSection, bool visibleOthers, Axis direction)

Add Section

Parameters

NameTypeDescription
partSectionboolPartSection
visibleOthersboolOthers Section Visible/Hidden
directionAxisDirection

Returns

TypeDescription
SectionSection

Examples

// 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
);
}