提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:况鱼杰|2019-10-09 11:47:44.050|阅读 224 次
概述:本文章将会介绍在使用VectorDraw Developer Framework过程中遇到的小问题。例如由于缺少SHX字体,文件打开缓慢;如何获取要复制或移动的对象等问题的解决办法。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
VectorDraw Developer Framework(VDF)是一个用于应用程序可视化的图形引擎库。有了VDF提供的功能,您可以轻松地创建、编辑、管理、输出、输入和打印2D和3D图形文件。
VectorDraw Developer Framework试用版下载
在使用任何软件过程中都不可避免的会遇到一些问题,VectorDraw Developer Framework(VDF)也是同样的,本篇文章就将会解决几个我们使用过程的小问题。
怎么解决缺少SHX字体,文件打开缓慢的问题?
问:
我在使用过程中,由于缺少SHX字体,文件打开缓慢,这种情况怎么解决?
答:
绘图使用一些.SHX字体文件作为默认VDF搜索路径中不存在的vdTextStyles,如果缺少,这会导致这种现象。因为在这些文本样式中,默认情况下,这些字体文件将替换为Arial TrueType字体,因为Arial的字符过多且Arial的复杂性,这些字符要花费更多的时间来计算其图形表示形式。
为了加快此速度,绘图所使用的shx字体文件必须存在于VDF搜索路径中(例如,在绘图文件夹中-or-在vdDocument.SupportPath中定义的文件夹中-或- 应用程序的路径)。
如果没有这些SHX字体文件,则还可以覆盖应用程序中的OnNoFileFind事件,以便用始终存在于应用程序路径中的SHX文件替换未引用的SHX字体文件,如下所示:
//In this example we substitute all unreferenced shx files with txt.shx which must exist in the drawing folder or in the application path. .... doc.OnNoFileFind += new vdDocument.NoFileFindEventHandler(ActiveDocument_OnNoFileFind); // add the event handler bool fontSubstitute = false; // a “public” variable to avoid recursion of event .... void ActiveDocument_OnNoFileFind(object sender, ref string fileName, ref bool success) { //Substitute shx font files with existing txt.shx font file. if (!fontSubstitute && fileName.EndsWith(".shx")) { fontSubstitute = true;//set it to true in order not to have recursion success = doc.FindFile("txt.shx", out fileName); fontSubstitute = false; if (success) return; } doc.Prompt("\r\n Can not find file: " + fileName); doc.Prompt(null); }
如何清除已删除的布局或块项目?
问:
如何清除已删除的布局或块项目?
答:
在下面,我们创建了两个不同的示例,说明如何从布局或块中清除已擦除的项目。
示例1:清除已删除的活动布局项目。
var tempCol = []; var activelayout = vdcanvas.GetActiveLayout(); for (var k = 0; k < activelayout.Entities.Items.length; k++) { var fig = vdcanvas.GetEntityItem(activelayout.Entities.Items[k]); if (!fig.Deleted) tempCol.push(activelayout.Entities.Items[k]);//If not an item is Deleted we push it in our tempCol } activelayout.Entities.Items = tempCol;//update the active layout entities with the tempCol
示例2:清除块中已擦除的项目
var tempCol = []; var blk = vdcanvas.AddBlock("myblock");//let's say that the block we want to update is the 'blk' for (var k = 0; k < blk.Entities.Items.length; k++) { var fig = vdcanvas.GetEntityItem(blk.Entities.Items[k]); if (!fig.Deleted) tempCol.push(blk.Entities.Items[k]);//If not an item is Deleted we push it in our tempCol } blk.Entities.Items = tempCol;//update the block entities with the tempCol
如何获取要复制或移动的对象?
问:
我想在复制/移动动作结束之前获取要复制或移动的对象的新位置,以便在新位置有效的情况下进行一些计算。如何执行此操作?
答:
当动作为ActionGetTranfromSelection时,可以使用OnActionDraw事件,并使用动作的GetMatrix并检查诸如以下的对象:
void doc_OnActionDraw(object sender, object action, bool isHideMode, ref bool cancel) { if (action != null && action is VectorDraw.Professional.CommandActions.ActionGetTranfromSelection) { VectorDraw.Professional.CommandActions.ActionGetTranfromSelection trans = action as VectorDraw.Professional.CommandActions.ActionGetTranfromSelection; vdSelection sel = trans.Layout.Document.Selections.FindName("VDRAW_PREVIOUS_SELSET");// sel contains the object that are moved/copied/rotated etc. if (sel == null || sel.Count == 0) return; // this.Text = sel.Count.ToString(); /// for debugging Matrix mat = trans.GetMatrix(); // this is the matrix that is applied to the source object by the action foreach (vdFigure item in sel) { vdFigure tempfig = item.Clone(item.Document) as vdFigure; // get a coly of this object being transformed (copied/moved etc) tempfig.Transformby(mat); // transform this with the action’s GetMatrix // this tempfig is the temporary figure rendered by action copy/move etc // using this tempfig object you can do your calid position check, using bounding box etc } } }
活动激活时如何使用鼠标中键进行平移
问:
活动激活时如何使用鼠标中键进行平移?
答:
您可以通过使用vdmoudown和vdmouseup事件来执行此操作,因为要这样做,您必须在要平移时暂停活动操作,然后将其恢复到当前命令。一旦使用鼠标中键进行平移,而不是使用左键完成命令,就可能发生这种情况。
在下面,您可以看到一个示例:
var vdcanvas = vdmanager.AttachCanvas('canvas'); vdcanvas.vdmousedown = _vdmousedown; //set to the initialize page load vdcanvas.vdmouseup = _vdmouseup; vdcanvas.ActiveAction().PanMouseButton = vdConst.MouseMiddleButton; // set the middle mouse button for panning procedure function _vdmousedown(e) { var code = e.mousebutton; //get the mouse button code if (code === 2)vdcanvas.ActiveAction().Pause(); // middle mouse code is 2 } function _vdmouseup(e) { //resume the action when finishing the panning var code = e.mousebutton; if (code === 2)vdcanvas.ActiveAction().Resume(); }
对于以上问答,如果您有任何的疑惑都可以在评论区留言,我们会及时回复。此系列的问答教程我们会持续更新,如果您感兴趣,可以多多关注本教程。
热门文章推荐:
点击此处还有VectorDraw Developer Framework的demo示例等着你来体验哦!
如果您对想要购买正版授权VectorDraw Developer Framework(VDF),可以联系咨询相关问题。
关注慧聚IT微信公众号 ☟☟☟,了解产品的最新动态及最新资讯。
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
文章转载自:本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
面向对象的矢量图形引擎库,支持2D和3D图形,用于可视化其应用程序,无限分发授权。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢