blob: 3d2ff448deb5167ca2671221d880670b66bfcc97 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
constants XlArrowHeadWidth {
const long xlArrowHeadWidthMedium = -4138;
const long xlArrowHeadWidthNarrow = 1;
const long xlArrowHeadWidthWide = 3;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|