• 怎么精确控制solidworks里面的表格的位置


    手工移动是不可能的,总是有点误差,虽然有主动捕捉的功能。

            public void SetTablePosition(TableAnnotation table, double x, double y)
            {
                table.Anchored = true;
                DrawingDoc swDrawing = (DrawingDoc)currentDoc;
                if (table.Anchored == true)
                {
                    //Sheet sheet = v.Sheet;
                    Sheet sheet = swDrawing.GetCurrentSheet() as Sheet;
                    TableAnchor tableAnchor = sheet.get_TableAnchor((int)swTableAnnotationType_e.swTableAnnotation_General);
    //Determine type of table anchor
                    table.AnchorType = (int)swBOMConfigurationAnchorType_e.swBOMConfigurationAnchor_BottomLeft;
    
                    // Set the new position of the table anchor
                    double[] dNewPosition = new double[2];
                    dNewPosition[0] = x;
                    dNewPosition[1] = y;
    
                    tableAnchor.Position = dNewPosition;
                }
                table.Anchored = false;
            }

    一个sheet里面的一种表格只能有一个定位点。

    所以当需要精确定位多个表格的时候,可以先表格先设置为附着点属性为true,定位完成后,设置为false。这样就不会相互干扰!

  • 相关阅读:
    CRM详细介绍网址
    element上传多图片
    多图片上传WebForm
    MemCached原理
    Redis的原理
    Ninject用法详解
    SQLsugar和unity 的用法
    json中的转义字符的处理
    fiddler
    orm多表关系
  • 原文地址:https://www.cnblogs.com/hosseini/p/8758842.html
Copyright © 2020-2023  润新知