AcroExch.Rect 单位、属性问题

AcroExch.Rect  有四个属性:Top,Right,Left,Buttom

1.单位:point,一般通过英寸换算,1point=1/72 inch(英寸)

2.属性:Top: 区域距离 x 轴的距离,即Y轴值 ,而不是字面意思的顶部距离 (故当top=0,或 top <buttom 时,区域是不存在的)

                   原文:

Description
Gets or sets the top y-coordinate of an AcroRect.
Return Value
The y-coordinate of the top of the AcroRect.

Right: 区域距离 y 轴的距离,即X轴值,而不是字面理解的右边距(故当y=0;或 right<left时,区域是不存在的)。

       原文:

Right
[get/set] Short
Description
Gets or sets the right x-coordinate of an AcroRect.
Return Value
The x-coordinate of the right side of the AcroRect.

Left: 区域距离y 轴的距离,即 x 轴值。

 

Buttom:区域距离 x 轴距离,即Y 轴值.

原文地址:https://www.cnblogs.com/ericyi/p/4094401.html