summaryrefslogtreecommitdiff
path: root/oovbaapi
diff options
context:
space:
mode:
authorHannah Meeks <hmeeks4135@gmail.com>2022-08-05 10:48:50 +0100
committerTomaž Vajngerl <quikee@gmail.com>2022-08-06 14:16:50 +0200
commit5fecf10b9ef6e76aa1d06b7ab350abb5a495dda0 (patch)
tree5c523a0591585acd3f5167e189ac0894a1334162 /oovbaapi
parent4d96e375c28f9fe2dded40cba4ee8c67f77817f3 (diff)
VBA Add conversion methods to global
Change-Id: I920799321f245c015a527c816272c1038cc04544 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137851 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'oovbaapi')
-rw-r--r--oovbaapi/ooo/vba/word/XGlobals.idl9
1 files changed, 9 insertions, 0 deletions
diff --git a/oovbaapi/ooo/vba/word/XGlobals.idl b/oovbaapi/ooo/vba/word/XGlobals.idl
index 9808187a0d9f..8d2ee3900fcc 100644
--- a/oovbaapi/ooo/vba/word/XGlobals.idl
+++ b/oovbaapi/ooo/vba/word/XGlobals.idl
@@ -37,6 +37,15 @@ interface XGlobals : com::sun::star::uno::XInterface
any Dialogs( [in] any Index );
any ListGalleries( [in] any aIndex );
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);
};
}; }; };