彩票走势图

VDF常见问题整理(三十二):忽略片段的对象

翻译|使用教程|编辑:况鱼杰|2019-11-01 10:34:09.637|阅读 185 次

概述:本系列教程整理了VectorDraw Developer Framework(VDF)最常见问题,教程整理的很齐全,非常适合新手学习。本文将会展示​有可能来忽略节剪辑的类似vdInsert这样的对象。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

VectorDraw Developer Framework(VDF)是一个用于应用程序可视化的图形引擎库。有了VDF提供的功能,您可以轻松地创建、编辑、管理、输出、输入和打印2D和3D图形文件。   

VectorDraw Developer Framework试用版下载


问:

    是否有可能使用像vdInsert这样的对象来忽略节剪辑?我希望图形上的所有其他对象都可以通过部分剪切来剪切,但不希望通过此vdInsert来剪切。我怎样才能做到这一点?

答:

    您可以使用vdRender对象和ClearAllSectionClips / ApplySectionClips方法来执行此操作,请参见下面的代码:

vdInsert clip_ins = null; // will be used to check the object that will not have section clips applied for it
ISectionClips sectionclips = null; // will be used to restore the section clips later
private void button10_Click(object sender, EventArgs e)
{
    vdDocument doc = vdFramedControl1.BaseControl.ActiveDocument;
    doc.Open(@"C:\test\SEC_clip.vdml");// use your path here to open a test drawing that contains the vdInsert and section clips
    doc.CommandAction.Zoom("W", new gPoint(-2,-2), new gPoint(30,30));
 
    clip_ins = doc.Model.Entities[1] as vdInsert; // this is the vdInsert that will ignore section clipping
    if (clip_ins == null) return; // this is the vdInsert that defines the section clipping !
 
    doc.FreezeEntityDrawEvents.Push(false);
    doc.FreezeModifyEvents.Push(false);
 
    doc.OnDrawFigure += new vdDocument.FigureDrawEventHandler(doc_OnDrawFigure); // these two events are necessary 
    doc.OnDrawAfterFigure += new vdDocument.FigureAfterDrawEventHandler(doc_OnDrawAfterFigure);
}
 
void doc_OnDrawAfterFigure(object sender, VectorDraw.Render.vdRender render)
{
    if (sender != null && sender == clip_ins) // re-enable section clips for this vdInsert
    {
        render.ApplySectionClips(sectionclips); // using the stored section clips from DrawFigure event
    }
}
 
void doc_OnDrawFigure(object sender, VectorDraw.Render.vdRender render, ref bool cancel)
{
    if (sender != null && sender == clip_ins)// disable section clips for this vdInsert
    {
        sectionclips = render.SectionClips; // keep the section clips for the DrawAfterFigure to be re-enabled
        render.ClearAllSectionClips(); // and clear them
    }
}//end

    对于以上问答,如果您有任何的疑惑都可以在评论区留言,我们会及时回复。此系列的问答教程我们会持续更新,如果您感兴趣,可以多多关注本教程。

热门文章推荐:


    如果您对想要购买正版授权VectorDraw Developer Framework(VDF),可以联系咨询相关问题。

    关注慧聚IT微信公众号 ☟☟☟,了解产品的最新动态及最新资讯。

1561953111.jpg



标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP