1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
constants XlColumnDataType {
const long xlDMYFormat = 4;
const long xlDYMFormat = 7;
const long xlEMDFormat = 10;
const long xlGeneralFormat = 1;
const long xlMDYFormat = 3;
const long xlMYDFormat = 6;
const long xlSkipColumn = 9;
const long xlTextFormat = 2;
const long xlYDMFormat = 8;
const long xlYMDFormat = 5;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|