diff options
Diffstat (limited to 'oovbaapi/ooo')
-rw-r--r-- | oovbaapi/ooo/vba/word/XApplication.idl | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/oovbaapi/ooo/vba/word/XApplication.idl b/oovbaapi/ooo/vba/word/XApplication.idl index 257903eb47f2..0475c2d82829 100644 --- a/oovbaapi/ooo/vba/word/XApplication.idl +++ b/oovbaapi/ooo/vba/word/XApplication.idl @@ -52,7 +52,16 @@ interface XApplication : XConnectable any Addins( [in] any Index ); any Dialogs( [in] any Index ); any ListGalleries( [in] any aIndex ); - float CentimetersToPoints([in] float Centimeters ); + float CentimetersToPoints( [in] float Centimeters ); + float PointsToCentimeters( [in] float Points); + float PixelsToPoints( [in] float Pixels, [in] boolean fVertical ); + float PointsToPixels( [in] float Points, [in] boolean fVertical); + float InchesToPoints( [in] float Inches); + float PointsToInches( [in] float Points); + float MillimetersToPoints( [in] float Millimeters ); + float PointsToMillimeters( [in] float Points); + float PicasToPoints( [in] float Picas); + float PointsToPicas( [in] float Points); void ShowMe(); void Resize( [in] long Width, [in] long Height ); void Move( [in] long Left, [in] long Top ); |