본문으로 건너뛰기

LockObjects

Overloads

NameDescription
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

NameTypeDescription
keywordstringKeyword : OBST or INSU ...
fullMatchboolFull Match - True(Full Match) / False(Contains)
statusboolTrue(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);
}