public static bool IsHidden(A3DObject obj) { return(obj.GetDynamicProperty("hidden") != null); }
public SceneNodeWrapper(A3DObject obj, int imageIndex) { this.Text = string.Format("{0} : {1}", obj.Name, obj.GetType().Name); this.obj = obj; this.ImageIndex = this.SelectedImageIndex = imageIndex; }
public static void MakeHidden(A3DObject obj) { obj.CreateDynamicProperty <bool>("hidden").Value = true; }
public static void MakeHidden(A3DObject obj) { obj.SetProperty("hidden", true); }