📄 getpinxy.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 + -