LockObjects
Overloads
| Name | Description |
|---|---|
| LockObjects(string keyword, bool fullMatch, bool status) | Lock And Hide Objects By Keyword |
LockObjects(string keyword, bool fullMatch, bool status)
public void LockObjects(string keyword, bool fullMatch, bool status)
Lock And Hide Objects By Keyword
Parameters
| Name | Type | Description |
|---|---|---|
| keyword | string | Keyword : OBST or INSU ... |
| fullMatch | bool | Full Match - True(Full Match) / False(Contains) |
| status | bool | True(Lock And Hide) / False(Unlock And Show) |
Examples
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void Example()
{
if (vizcore3d.Model.IsOpen() == false) return;
// Hide OBST - Keyword : .... (OBST)
vizcore3d.Object3D.LockObjects("(OBST)", false, true);
// Hide INSU - Keyword : .... (INSU)
vizcore3d.Object3D.LockObjects("(INSU)", false, true);
}