How use DoNotDrawObject?
I trued like below but seems it wrong
Object = TheNCE.GetObjectAt(obj)
Object.TypeData.RaysIgnoreObject = ZOSAPI.Editors.NCE.RaysIgnoreObjectType.Never
Object.TypeData.DoNotDrawObject = True
How use DoNotDrawObject?
I trued like below but seems it wrong
Object = TheNCE.GetObjectAt(obj)
Object.TypeData.RaysIgnoreObject = ZOSAPI.Editors.NCE.RaysIgnoreObjectType.Never
Object.TypeData.DoNotDrawObject = True
Best answer by David.Nguyen
DoNotDrawObject is a property of DrawData and not TypeData.
Object = TheSystem.NCE.GetObjectAt(1)
ObjectDrawData = Object.DrawData
ObjectDrawData.DoNotDrawObject = TrueTake care,
David
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.