⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getpinxy.txt

📁 自动化控制visio
💻 TXT
字号:
// Gets a shape's PinX and PinY
function  getShapePinXmm(shape: Visio_TLB.shape): double;
function  getShapePinYmm(shape: Visio_TLB.shape): double;

// Get PinX result in mm for shape
function getShapePinXmm(shape: Visio_TLB.shape): double;
begin
  result := 0;
  try
    result := shape.CellsU['PinX'].Result['mm'];
  except;
  end;
end;

// Get PinY result in mm for shape
function getShapePinYmm(shape: Visio_TLB.shape): double;
begin
  result := 0;
  try
    result := shape.CellsU['PinY'].Result['mm'];
  except;
  end;
end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -