Add
Overloads
| Name | Description |
|---|---|
| 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
| Name | Type | Description |
|---|---|---|
| partSection | bool | PartSection |
| direction | Axis | Direction |
Returns
| Type | Description |
|---|---|
| Section | Section |
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
| Name | Type | Description |
|---|---|---|
| partSection | bool | PartSection |
| visibleOthers | bool | Others Section Visible/Hidden |
| direction | Axis | Direction |
Returns
| Type | Description |
|---|---|
| Section | Section |
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
);
}