| /trunk/main/sc/source/filter/xml/ |
| H A D | XMLConverter.cxx | 59 sheet::GeneralFunction ScXMLConverter::GetFunctionFromString( const OUString& sFunction ) in GetFunctionFromString() 62 return sheet::GeneralFunction_SUM; in GetFunctionFromString() 64 return sheet::GeneralFunction_AUTO; in GetFunctionFromString() 66 return sheet::GeneralFunction_COUNT; in GetFunctionFromString() 68 return sheet::GeneralFunction_COUNTNUMS; in GetFunctionFromString() 70 return sheet::GeneralFunction_PRODUCT; in GetFunctionFromString() 72 return sheet::GeneralFunction_AVERAGE; in GetFunctionFromString() 74 return sheet::GeneralFunction_MAX; in GetFunctionFromString() 76 return sheet::GeneralFunction_MIN; in GetFunctionFromString() 78 return sheet::GeneralFunction_STDEV; in GetFunctionFromString() [all …]
|
| H A D | XMLExportDatabaseRanges.cxx | 82 …uno::Reference <sheet::XDatabaseRanges> xDatabaseRanges(xPropertySet->getPropertyValue(rtl::OUStri… in GetEmptyDatabaseRanges() 91 …uno::Reference <sheet::XDatabaseRange> xDatabaseRange(xDatabaseRanges->getByName(sDatabaseRangeNam… in GetEmptyDatabaseRanges() 100 sheet::DataImportMode nSourceType = sheet::DataImportMode_NONE; in GetEmptyDatabaseRanges() 104 if (nSourceType != sheet::DataImportMode_NONE) in GetEmptyDatabaseRanges() 130 sheet::DataImportMode nSourceType = sheet::DataImportMode_NONE; in WriteImportDescriptor() 147 case sheet::DataImportMode_NONE : break; in WriteImportDescriptor() 148 case sheet::DataImportMode_QUERY : in WriteImportDescriptor() 162 case sheet::DataImportMode_TABLE : in WriteImportDescriptor() 176 case sheet::DataImportMode_SQL : in WriteImportDescriptor() 203 case sheet::FilterOperator2::EQUAL : in getOperatorXML() [all …]
|
| H A D | XMLExportDataPilot.cxx | 282 const sheet::DataPilotFieldReference* pRef = pDim->GetReferenceValue(); in WriteFieldReference() 288 case sheet::DataPilotFieldReferenceType::NONE : in WriteFieldReference() 291 case sheet::DataPilotFieldReferenceType::ITEM_DIFFERENCE : in WriteFieldReference() 294 case sheet::DataPilotFieldReferenceType::ITEM_PERCENTAGE : in WriteFieldReference() 297 case sheet::DataPilotFieldReferenceType::ITEM_PERCENTAGE_DIFFERENCE : in WriteFieldReference() 300 case sheet::DataPilotFieldReferenceType::RUNNING_TOTAL : in WriteFieldReference() 303 case sheet::DataPilotFieldReferenceType::ROW_PERCENTAGE : in WriteFieldReference() 306 case sheet::DataPilotFieldReferenceType::COLUMN_PERCENTAGE : in WriteFieldReference() 309 case sheet::DataPilotFieldReferenceType::TOTAL_PERCENTAGE : in WriteFieldReference() 312 case sheet::DataPilotFieldReferenceType::INDEX : in WriteFieldReference() [all …]
|
| /trunk/main/odk/examples/DevelopersGuide/Spreadsheet/ |
| H A D | SpreadsheetSample.java | 195 com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellSamples() 270 com.sun.star.sheet.XCellAddressable xCellAddr = (com.sun.star.sheet.XCellAddressable) in doCellSamples() 271 UnoRuntime.queryInterface( com.sun.star.sheet.XCellAddressable.class, xCell ); in doCellSamples() 280 com.sun.star.sheet.XSheetAnnotationsSupplier xAnnotationsSupp = in doCellSamples() 281 (com.sun.star.sheet.XSheetAnnotationsSupplier) UnoRuntime.queryInterface( in doCellSamples() 282 com.sun.star.sheet.XSheetAnnotationsSupplier.class, xSheet ); in doCellSamples() 283 com.sun.star.sheet.XSheetAnnotations xAnnotations = xAnnotationsSupp.getAnnotations(); in doCellSamples() 286 …com.sun.star.sheet.XSheetAnnotationAnchor xAnnotAnchor = (com.sun.star.sheet.XSheetAnnotationAncho… in doCellSamples() 287 UnoRuntime.queryInterface( com.sun.star.sheet.XSheetAnnotationAnchor.class, xCell ); in doCellSamples() 288 com.sun.star.sheet.XSheetAnnotation xAnnotation = xAnnotAnchor.getAnnotation(); in doCellSamples() [all …]
|
| H A D | SpreadsheetDocHelper.java | 51 private com.sun.star.sheet.XSpreadsheetDocument mxDocument; 93 public com.sun.star.sheet.XSpreadsheetDocument getDocument() in getDocument() 101 public com.sun.star.sheet.XSpreadsheet getSpreadsheet( int nIndex ) in getSpreadsheet() 104 com.sun.star.sheet.XSpreadsheets xSheets = mxDocument.getSheets(); in getSpreadsheet() 105 com.sun.star.sheet.XSpreadsheet xSheet = null; in getSpreadsheet() 111 xSheet = (com.sun.star.sheet.XSpreadsheet) UnoRuntime.queryInterface( in getSpreadsheet() 112 com.sun.star.sheet.XSpreadsheet.class, xSheetsIA.getByIndex(nIndex)); in getSpreadsheet() 127 public com.sun.star.sheet.XSpreadsheet insertSpreadsheet( in insertSpreadsheet() 131 com.sun.star.sheet.XSpreadsheets xSheets = mxDocument.getSheets(); in insertSpreadsheet() 132 com.sun.star.sheet.XSpreadsheet xSheet = null; in insertSpreadsheet() [all …]
|
| /trunk/main/odk/examples/CLI/CSharp/Spreadsheet/ |
| H A D | SpreadsheetSample.cs | 75 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellSamples() 155 unoidl.com.sun.star.sheet.XCellAddressable xCellAddr = in doCellSamples() 156 (unoidl.com.sun.star.sheet.XCellAddressable) xCell; in doCellSamples() 166 unoidl.com.sun.star.sheet.XSheetAnnotationsSupplier xAnnotationsSupp = in doCellSamples() 167 (unoidl.com.sun.star.sheet.XSheetAnnotationsSupplier) xSheet; in doCellSamples() 168 unoidl.com.sun.star.sheet.XSheetAnnotations xAnnotations = in doCellSamples() 172 unoidl.com.sun.star.sheet.XSheetAnnotationAnchor xAnnotAnchor = in doCellSamples() 173 (unoidl.com.sun.star.sheet.XSheetAnnotationAnchor) xCell; in doCellSamples() 174 unoidl.com.sun.star.sheet.XSheetAnnotation xAnnotation = in doCellSamples() 186 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellRangeSamples() [all …]
|
| H A D | SpreadsheetDocHelper.cs | 44 private unoidl.com.sun.star.sheet.XSpreadsheetDocument mxDocument; 67 public unoidl.com.sun.star.sheet.XSpreadsheetDocument getDocument() in getDocument() 75 public unoidl.com.sun.star.sheet.XSpreadsheet getSpreadsheet( int nIndex ) in getSpreadsheet() 78 unoidl.com.sun.star.sheet.XSpreadsheets xSheets = in getSpreadsheet() 84 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = in getSpreadsheet() 85 (unoidl.com.sun.star.sheet.XSpreadsheet) in getSpreadsheet() 95 public unoidl.com.sun.star.sheet.XSpreadsheet insertSpreadsheet( in insertSpreadsheet() 99 unoidl.com.sun.star.sheet.XSpreadsheets xSheets = in insertSpreadsheet() 103 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = in insertSpreadsheet() 104 (unoidl.com.sun.star.sheet.XSpreadsheet) in insertSpreadsheet() [all …]
|
| /trunk/main/qadevOOo/java/OOoRunner/src/main/resources/objdsc/sc/ |
| H A D | com.sun.star.comp.office.ScTableSheetObj.csv | 30 "ScTableSheetObj";"com::sun::star::sheet::XSheetOutline";"group()" 31 "ScTableSheetObj";"com::sun::star::sheet::XSheetOutline";"ungroup()" 32 "ScTableSheetObj";"com::sun::star::sheet::XSheetOutline";"autoOutline()" 33 "ScTableSheetObj";"com::sun::star::sheet::XSheetOutline";"clearOutline()" 34 "ScTableSheetObj";"com::sun::star::sheet::XSheetOutline";"hideDetail()" 35 "ScTableSheetObj";"com::sun::star::sheet::XSheetOutline";"showDetail()" 36 "ScTableSheetObj";"com::sun::star::sheet::XSheetOutline";"showLevel()" 39 "ScTableSheetObj";"com::sun::star::sheet::XSheetFilterable";"createFilterDescriptor()" 40 "ScTableSheetObj";"com::sun::star::sheet::XSheetFilterable";"filter()" 53 "ScTableSheetObj";"com::sun::star::sheet::XCellRangeAddressable";"getRangeAddress()" [all …]
|
| H A D | com.sun.star.comp.office.ScAutoFormatFieldObj.csv | 1 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontName" 2 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontNameAsian#optional" 3 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontNameComplex#optional" 4 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontStyleName" 5 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontStyleNameAsian#option… 6 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontStyleNameComplex#opti… 7 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontCharSet" 8 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontCharSetAsian#optional" 9 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontCharSetComplex#option… 10 "ScAutoFormatFieldObj";"com::sun::star::sheet::TableAutoFormatField";"CharFontFamily" [all …]
|
| H A D | com.sun.star.comp.office.ScTabViewObj.csv | 6 "ScTabViewObj";"com::sun::star::sheet::XViewPane";"getFirstVisibleColumn()" 7 "ScTabViewObj";"com::sun::star::sheet::XViewPane";"setFirstVisibleColumn()" 8 "ScTabViewObj";"com::sun::star::sheet::XViewPane";"getFirstVisibleRow()" 9 "ScTabViewObj";"com::sun::star::sheet::XViewPane";"setFirstVisibleRow()" 10 "ScTabViewObj";"com::sun::star::sheet::XViewPane";"getVisibleRange()" 11 "ScTabViewObj";"com::sun::star::sheet::XEnhancedMouseClickBroadcaster#optional";"addEnhancedMouseCl… 12 "ScTabViewObj";"com::sun::star::sheet::XEnhancedMouseClickBroadcaster#optional";"removeEnhancedMous… 15 "ScTabViewObj";"com::sun::star::sheet::XCellRangeReferrer";"getReferredCells()" 18 "ScTabViewObj";"com::sun::star::sheet::SpreadsheetViewSettings";"ShowFormulas" 19 "ScTabViewObj";"com::sun::star::sheet::SpreadsheetViewSettings";"ShowZeroValues" [all …]
|
| H A D | com.sun.star.comp.office.ScModelObj.csv | 17 "ScModelObj";"com::sun::star::sheet::XSpreadsheetDocument";"getSheets()" 34 "ScModelObj";"com::sun::star::sheet::XConsolidatable";"createConsolidationDescriptor()" 35 "ScModelObj";"com::sun::star::sheet::XConsolidatable";"consolidate()" 39 "ScModelObj";"com::sun::star::sheet::XCalculatable";"calculate()" 40 "ScModelObj";"com::sun::star::sheet::XCalculatable";"calculateAll()" 41 "ScModelObj";"com::sun::star::sheet::XCalculatable";"isAutomaticCalculationEnabled()" 42 "ScModelObj";"com::sun::star::sheet::XCalculatable";"enableAutomaticCalculation()" 51 "ScModelObj";"com::sun::star::sheet::XDocumentAuditing";"refreshArrows()" 52 "ScModelObj";"com::sun::star::sheet::XGoalSeek";"seekGoal()" 53 "ScModelObj";"com::sun::star::sheet::SpreadsheetDocument";"NamedRanges" [all …]
|
| H A D | com.sun.star.comp.office.ScCellCursorObj.csv | 32 "ScCellCursorObj";"com::sun::star::sheet::XSheetFilterable";"createFilterDescriptor()" 33 "ScCellCursorObj";"com::sun::star::sheet::XSheetFilterable";"filter()" 46 "ScCellCursorObj";"com::sun::star::sheet::XCellRangeAddressable";"getRangeAddress()" 58 "ScCellCursorObj";"com::sun::star::sheet::XUsedAreaCursor";"gotoStartOfUsedArea()" 59 "ScCellCursorObj";"com::sun::star::sheet::XUsedAreaCursor";"gotoEndOfUsedArea()" 113 "ScCellCursorObj";"com::sun::star::sheet::XSheetOperation";"computeFunction()" 114 "ScCellCursorObj";"com::sun::star::sheet::XSheetOperation";"clearContents()" 124 "ScCellCursorObj";"com::sun::star::sheet::XFormulaQuery";"queryDependents()" 125 "ScCellCursorObj";"com::sun::star::sheet::XFormulaQuery";"queryPrecedents()" 126 "ScCellCursorObj";"com::sun::star::sheet::XSheetFilterableEx";"createFilterDescriptorByObject()" [all …]
|
| H A D | com.sun.star.comp.office.ScDataPilotFieldObj.csv | 1 "ScDataPilotFieldObj";"com::sun::star::sheet::XDataPilotFieldGrouping#optional";"createNameGroup()" 2 "ScDataPilotFieldObj";"com::sun::star::sheet::XDataPilotFieldGrouping#optional";"createDateGroup()" 3 "ScDataPilotFieldObj";"com::sun::star::sheet::DataPilotField";"Orientation" 4 "ScDataPilotFieldObj";"com::sun::star::sheet::DataPilotField";"Function" 5 "ScDataPilotFieldObj";"com::sun::star::sheet::DataPilotField";"SelectedPage#optional" 6 "ScDataPilotFieldObj";"com::sun::star::sheet::DataPilotField";"UseSelectedPage#optional" 7 "ScDataPilotFieldObj";"com::sun::star::sheet::DataPilotField";"UsedHierarchy#optional" 8 "ScDataPilotFieldObj";"com::sun::star::sheet::DataPilotField";"HasSortInfo#optional" 9 "ScDataPilotFieldObj";"com::sun::star::sheet::DataPilotField";"SortInfo#optional" 10 "ScDataPilotFieldObj";"com::sun::star::sheet::DataPilotField";"HasLayoutInfo#optional" [all …]
|
| /trunk/main/sc/source/core/data/ |
| H A D | dpoutput.cxx | 70 using ::com::sun::star::sheet::DataPilotTablePositionData; 71 using ::com::sun::star::sheet::DataPilotTableResultData; 103 uno::Sequence<sheet::MemberResult> aResult; 179 const uno::Reference<sheet::XDataPilotMemberResults>& xLevRes, in lcl_FillNumberFormats() 188 uno::Sequence<sheet::MemberResult> aResult = xLevRes->getResults(); in lcl_FillNumberFormats() 210 sheet::DataPilotFieldOrientation eDimOrient = in lcl_FillNumberFormats() 211 (sheet::DataPilotFieldOrientation) ScUnoHelpFunctions::GetEnumProperty( in lcl_FillNumberFormats() 213 sheet::DataPilotFieldOrientation_HIDDEN ); in lcl_FillNumberFormats() 214 if ( eDimOrient == sheet::DataPilotFieldOrientation_DATA ) in lcl_FillNumberFormats() 230 const sheet::MemberResult* pArray = aResult.getConstArray(); in lcl_FillNumberFormats() [all …]
|
| H A D | dpsave.cxx | 65 using namespace com::sun::star::sheet; 204 nOrientation( sheet::DataPilotFieldOrientation_HIDDEN ), in ScDPSaveDimension() 205 nFunction( sheet::GeneralFunction_AUTO ), in ScDPSaveDimension() 247 pReferenceValue = new sheet::DataPilotFieldReference( *(r.pReferenceValue) ); in ScDPSaveDimension() 251 pSortInfo = new sheet::DataPilotFieldSortInfo( *(r.pSortInfo) ); in ScDPSaveDimension() 255 pAutoShowInfo = new sheet::DataPilotFieldAutoShowInfo( *(r.pAutoShowInfo) ); in ScDPSaveDimension() 259 pLayoutInfo = new sheet::DataPilotFieldLayoutInfo( *(r.pLayoutInfo) ); in ScDPSaveDimension() 471 void ScDPSaveDimension::SetReferenceValue(const sheet::DataPilotFieldReference* pNew) in SetReferenceValue() 475 pReferenceValue = new sheet::DataPilotFieldReference(*pNew); in SetReferenceValue() 480 void ScDPSaveDimension::SetSortInfo(const sheet::DataPilotFieldSortInfo* pNew) in SetSortInfo() [all …]
|
| H A D | dptabsrc.cxx | 80 using ::com::sun::star::sheet::DataPilotFieldAutoShowInfo; 175 return sheet::DataPilotFieldOrientation_COLUMN; in GetOrientation() 178 return sheet::DataPilotFieldOrientation_ROW; in GetOrientation() 181 return sheet::DataPilotFieldOrientation_DATA; in GetOrientation() 184 return sheet::DataPilotFieldOrientation_PAGE; in GetOrientation() 185 return sheet::DataPilotFieldOrientation_HIDDEN; in GetOrientation() 288 case sheet::DataPilotFieldOrientation_COLUMN: in SetOrientation() 291 case sheet::DataPilotFieldOrientation_ROW: in SetOrientation() 294 case sheet::DataPilotFieldOrientation_DATA: in SetOrientation() 297 case sheet::DataPilotFieldOrientation_PAGE: in SetOrientation() [all …]
|
| H A D | dpobject.cxx | 89 using ::com::sun::star::sheet::DataPilotTableHeaderData; 90 using ::com::sun::star::sheet::DataPilotTablePositionData; 129 sal_uInt16 lcl_GetDataGetOrientation( const uno::Reference<sheet::XDimensionsSupplier>& xSource ) in lcl_GetDataGetOrientation() 131 long nRet = sheet::DataPilotFieldOrientation_HIDDEN; in lcl_GetDataGetOrientation() 151 sheet::DataPilotFieldOrientation_HIDDEN ); in lcl_GetDataGetOrientation() 373 ScRange aTabRange = pOutput->GetOutputRange(sheet::DataPilotOutputRangeType::TABLE); in IsDataDescriptionCell() 377 uno::Reference<sheet::XDimensionsSupplier> ScDPObject::GetSource() in GetSource() 793 const ScAddress& rPos, Sequence<sheet::DataPilotFieldFilter>& rFilters) in GetDataFieldPositionData() 797 vector<sheet::DataPilotFieldFilter> aFilters; in GetDataFieldPositionData() 813 Reference<sheet::XDrillDownDataSupplier> xDrillDownData(xSource, UNO_QUERY); in GetDrillDownData() [all …]
|
| /trunk/main/sc/source/ui/unoobj/ |
| H A D | datauno.cxx | 150 ScSubTotalFunc ScDataUnoConversion::GeneralToSubTotal( sheet::GeneralFunction eSummary ) in GeneralToSubTotal() 155 case sheet::GeneralFunction_NONE: eSubTotal = SUBTOTAL_FUNC_NONE; break; in GeneralToSubTotal() 156 case sheet::GeneralFunction_SUM: eSubTotal = SUBTOTAL_FUNC_SUM; break; in GeneralToSubTotal() 157 case sheet::GeneralFunction_COUNT: eSubTotal = SUBTOTAL_FUNC_CNT2; break; in GeneralToSubTotal() 158 case sheet::GeneralFunction_AVERAGE: eSubTotal = SUBTOTAL_FUNC_AVE; break; in GeneralToSubTotal() 159 case sheet::GeneralFunction_MAX: eSubTotal = SUBTOTAL_FUNC_MAX; break; in GeneralToSubTotal() 160 case sheet::GeneralFunction_MIN: eSubTotal = SUBTOTAL_FUNC_MIN; break; in GeneralToSubTotal() 161 case sheet::GeneralFunction_PRODUCT: eSubTotal = SUBTOTAL_FUNC_PROD; break; in GeneralToSubTotal() 162 case sheet::GeneralFunction_COUNTNUMS: eSubTotal = SUBTOTAL_FUNC_CNT; break; in GeneralToSubTotal() 163 case sheet::GeneralFunction_STDEV: eSubTotal = SUBTOTAL_FUNC_STD; break; in GeneralToSubTotal() [all …]
|
| H A D | fmtuno.cxx | 57 … {MAP_CHAR_LEN(SC_UNONAME_ERRALSTY), 0, &getCppuType((sheet::ValidationAlertStyle*)0), 0, 0}, in lcl_GetValidatePropertyMap() 66 … {MAP_CHAR_LEN(SC_UNONAME_TYPE), 0, &getCppuType((sheet::ValidationType*)0), 0, 0}, in lcl_GetValidatePropertyMap() 80 sheet::ConditionOperator lcl_ConditionModeToOperator( ScConditionMode eMode ) in lcl_ConditionModeToOperator() 82 sheet::ConditionOperator eOper = sheet::ConditionOperator_NONE; in lcl_ConditionModeToOperator() 85 case SC_COND_EQUAL: eOper = sheet::ConditionOperator_EQUAL; break; in lcl_ConditionModeToOperator() 86 case SC_COND_LESS: eOper = sheet::ConditionOperator_LESS; break; in lcl_ConditionModeToOperator() 87 case SC_COND_GREATER: eOper = sheet::ConditionOperator_GREATER; break; in lcl_ConditionModeToOperator() 88 case SC_COND_EQLESS: eOper = sheet::ConditionOperator_LESS_EQUAL; break; in lcl_ConditionModeToOperator() 89 case SC_COND_EQGREATER: eOper = sheet::ConditionOperator_GREATER_EQUAL; break; in lcl_ConditionModeToOperator() 90 case SC_COND_NOTEQUAL: eOper = sheet::ConditionOperator_NOT_EQUAL; break; in lcl_ConditionModeToOperator() [all …]
|
| H A D | tokenuno.cxx | 60 …{MAP_CHAR_LEN(SC_UNO_FORMULACONVENTION), 0, &getCppuType(&sheet::AddressConvention::UNSPECIFIE… in lcl_GetFormulaParserMap() 61 …{MAP_CHAR_LEN(SC_UNO_OPCODEMAP), 0, &getCppuType((uno::Sequence< sheet::FormulaOpCodeM… in lcl_GetFormulaParserMap() 73 mnConv( sheet::AddressConvention::UNSPECIFIED ), in ScFormulaParserObj() 113 sheet::FormulaLanguage::ENGLISH : in SetCompilerFlags() 114 sheet::FormulaLanguage::NATIVE; in SetCompilerFlags() 130 uno::Sequence<sheet::FormulaToken> SAL_CALL ScFormulaParserObj::parseFormula( in parseFormula() 135 uno::Sequence<sheet::FormulaToken> aRet; in parseFormula() 157 const uno::Sequence<sheet::FormulaToken>& aTokens, const table::CellAddress& rReferencePos ) in printFormula() 292 void lcl_ExternalRefToApi( sheet::SingleReference& rAPI, const ScSingleRefData& rRef ) in SC_IMPL_DUMMY_PROPERTY_LISTENER() 302 if ( rRef.IsColRel() ) nFlags |= sheet::ReferenceFlags::COLUMN_RELATIVE; in SC_IMPL_DUMMY_PROPERTY_LISTENER() [all …]
|
| /trunk/main/offapi/com/sun/star/sheet/ |
| H A D | Spreadsheet.idl | 28 #include <com/sun/star/sheet/SheetCellRange.idl> 32 #include <com/sun/star/sheet/XSpreadsheet.idl> 44 #include <com/sun/star/sheet/XDataPilotTablesSupplier.idl> 48 #include <com/sun/star/sheet/XScenariosSupplier.idl> 52 #include <com/sun/star/sheet/XSheetAnnotationsSupplier.idl> 64 #include <com/sun/star/sheet/XCellRangeMovement.idl> 68 #include <com/sun/star/sheet/XPrintAreas.idl> 72 #include <com/sun/star/sheet/XSheetPageBreak.idl> 76 #include <com/sun/star/sheet/XSheetOutline.idl> 80 #include <com/sun/star/sheet/XSheetAuditing.idl> [all …]
|
| H A D | SheetCellRange.idl | 49 #include <com/sun/star/sheet/SheetRangesQuery.idl> 74 #include <com/sun/star/sheet/XSheetCellRange.idl> 78 #include <com/sun/star/sheet/XCellRangeData.idl> 82 #include <com/sun/star/sheet/XCellRangeFormula.idl> 86 #include <com/sun/star/sheet/XCellRangeAddressable.idl> 90 #include <com/sun/star/sheet/XSheetOperation.idl> 94 #include <com/sun/star/sheet/XCellSeries.idl> 98 #include <com/sun/star/sheet/XArrayFormulaRange.idl> 102 #include <com/sun/star/sheet/XMultipleOperation.idl> 114 #include <com/sun/star/sheet/XSubTotalCalculatable.idl> [all …]
|
| H A D | XSheetLinkable.idl | 32 #include <com/sun/star/sheet/SheetLinkMode.idl> 37 module com { module sun { module star { module sheet { 41 /** enables a sheet to refer to another sheet in a different document. 43 <p>To insert a sheet link, the sheet used as linked sheet has to exist 46 collection and links the sheet to the specified external sheet.</p> 48 @see com::sun::star::sheet::SheetLinks 49 @see com::sun::star::sheet::SheetLink 63 com::sun::star::sheet::SheetLinkMode getLinkMode(); 67 /** enables the linking of the sheet and controls whether formulas 77 void setLinkMode( [in] com::sun::star::sheet::SheetLinkMode nLinkMode ); [all …]
|
| /trunk/main/testtools/source/cliversioning/ |
| H A D | version.cs | 65 unoidl.com.sun.star.sheet.XSpreadsheet xSheet = getSpreadsheet( 0 ); in doCellRangeSamples() 131 unoidl.com.sun.star.sheet.XCellRangeData xData = in doCellRangeSamples() 132 (unoidl.com.sun.star.sheet.XCellRangeData) xCellRange; in doCellRangeSamples() 203 unoidl.com.sun.star.sheet.XCellRangeAddressable xRangeAddr = in doCellRangeSamples() 204 (unoidl.com.sun.star.sheet.XCellRangeAddressable) xCellRange; in doCellRangeSamples() 209 unoidl.com.sun.star.sheet.XSheetOperation xSheetOp = in doCellRangeSamples() 210 (unoidl.com.sun.star.sheet.XSheetOperation) xData; in doCellRangeSamples() 212 unoidl.com.sun.star.sheet.GeneralFunction.AVERAGE ); in doCellRangeSamples() 235 private unoidl.com.sun.star.sheet.XCellSeries getCellSeries( in getCellSeries() 236 unoidl.com.sun.star.sheet.XSpreadsheet xSheet, String aRange ) in getCellSeries() [all …]
|
| /trunk/main/sc/source/ui/vba/ |
| H A D | vbacondition.cxx | 36 …no::Reference< uno::XComponentContext > & xContext, const uno::Reference< sheet::XSheetCondition >… in ScVbaCondition() 42 sheet::ConditionOperator 45 sheet::ConditionOperator aRetAPIOperator = sheet::ConditionOperator_NONE; in retrieveAPIOperator() 52 aRetAPIOperator = sheet::ConditionOperator_BETWEEN; in retrieveAPIOperator() 55 aRetAPIOperator = sheet::ConditionOperator_NOT_BETWEEN; in retrieveAPIOperator() 58 aRetAPIOperator = sheet::ConditionOperator_EQUAL; in retrieveAPIOperator() 61 aRetAPIOperator = sheet::ConditionOperator_NOT_EQUAL; in retrieveAPIOperator() 64 aRetAPIOperator = sheet::ConditionOperator_GREATER; in retrieveAPIOperator() 67 aRetAPIOperator = sheet::ConditionOperator_LESS; in retrieveAPIOperator() 70 aRetAPIOperator = sheet::ConditionOperator_GREATER_EQUAL; in retrieveAPIOperator() [all …]
|