А все равно не работает printf выводит то, что надо, но только printf мне не нужен.А нужно следующее:Код:::com::sun::star::lang::Lo cale oLocale = ::com::sun::star::lang::Locale();oLocale .Language = OUString::createFromAscii("ru");oLocale. Country = OUString::createFromAscii("RU"); Reference< XNumberFormatsSupplier > xNumberFormatsSupplier(rSheetDoc, UNO_QUERY);Reference< XNumberFormats > xNumberFormats = xNumberFormatsSupplier->getNumberFormats();sal_Int32 Key = xNumberFormats->queryKey(NumberFormat, oLocale, true); Reference< XCellRange > xCellRange = rSpSheet->getCellRangeByPosition(x1, y1, x2, y2);Reference< XPropertySet > xCellProp(xCellRange, UNO_QUERY);xCellProp->setPropertyValue(OStringToOUString("Num berFormat",RTL_TEXTENCODING_MS_1251), (Any)Key);если NumberFormat это
|