VDF Articles
Returned 1521 results listed below
70001503 Import export IFC file format
Category: WishImport export Industry Foundation Classes (IFC) file format
70002167 I wish I could reset the DimOvewriteValue of vdLeader object
Category: WishI wish I could reset the DimOvewriteValue of vdLeader object
70002168 The double click event fires with single click when cmdTextEdit is active
Category: HowToThe double-click event fires with single click when a command like cmdTextEdit is active. Try it using a code like: private void Form9_Load(object sender, EventArgs e) { doc = vdFramedControl1.BaseControl.ActiveDocument; doc.CommandAction.CmdText("hello", new gPoint(2, 2), 0.0d); vdFramedControl1.BaseControl.vdMouseDoubleClick += new MouseDoubleClickEventHandler(BaseControl_vdMouseDoubleClick); //vdFramedControl1.BaseControl.vdMouseClick += new MouseClickEventHandler(BaseControl_vdMouseClick); } int ddkk=0; void BaseControl_vdMouseDoubleClick(MouseEventArgs e, ref bool cancel) { ddkk++; this.Text = "double click " + ddkk.ToString() + " " + e.Clicks.ToString(); vdText mytxt = (vdText)doc.Model.Entities[doc.Model.Entities.Count - 1]; if (mytxt == null) return; doc.CommandAction.CmdTextEdit(mytxt); }
70002169 Display the ViewCube to a LayoutSplit with Single viewport
Category: HowToDisplay the ViewCube to a LayoutSplit with Single viewport and keep all other viewports without displying the viewcube
70002160 I wish when cloning a vdProduct object the IFCGlobalId would be preserved
Category: WishI wish when cloning a vdProduct object the IFCGlobalId would be preserved
70002153 I wish I could know the unit type of a unit xproperty of a product
Category: WishI wish I could know the unit type of a unit xproperty of a product
70002157 Increase text size in vdPropertyGrid and colors in teh VDFramed status bar
Category: HowToHow can I increase the text size in property grid and/or the colors in the status bar of the vdFramed control?