Difference between revisions of "Documentation/DevGuide/Spreadsheets/Cells Absolute Address"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (FINAL VERSION FOR L10N)
 
Line 12: Line 12:
 
The method <code>getCellAddress()</code> of the interface <idl>com.sun.star.sheet.XCellAddressable</idl> returns a <idl>com.sun.star.table.CellAddress</idl> struct that contains the absolute address of the cell in the spreadsheet document, including the sheet index. This is useful to get the address of cells returned by other methods.  
 
The method <code>getCellAddress()</code> of the interface <idl>com.sun.star.sheet.XCellAddressable</idl> returns a <idl>com.sun.star.table.CellAddress</idl> struct that contains the absolute address of the cell in the spreadsheet document, including the sheet index. This is useful to get the address of cells returned by other methods.  
 
<!--[SOURCE:Spreadsheet/SpreadsheetSample.java]-->
 
<!--[SOURCE:Spreadsheet/SpreadsheetSample.java]-->
 
+
<syntaxhighlight lang="java">
 
   // --- Get cell address. ---
 
   // --- Get cell address. ---
 
   com.sun.star.sheet.XCellAddressable xCellAddr = (com.sun.star.sheet.XCellAddressable)
 
   com.sun.star.sheet.XCellAddressable xCellAddr = (com.sun.star.sheet.XCellAddressable)
Line 22: Line 22:
 
   aText += "; Sheet=" + aAddress.Sheet;
 
   aText += "; Sheet=" + aAddress.Sheet;
 
   System.out.println(aText);
 
   System.out.println(aText);
 
+
</syntaxhighlight>
 
{{PDL1}}
 
{{PDL1}}
  
 
[[Category:Documentation/Developer's Guide/Spreadsheet Documents]]
 
[[Category:Documentation/Developer's Guide/Spreadsheet Documents]]

Latest revision as of 15:32, 3 January 2021



The method getCellAddress() of the interface com.sun.star.sheet.XCellAddressable returns a com.sun.star.table.CellAddress struct that contains the absolute address of the cell in the spreadsheet document, including the sheet index. This is useful to get the address of cells returned by other methods.

  // --- Get cell address. ---
  com.sun.star.sheet.XCellAddressable xCellAddr = (com.sun.star.sheet.XCellAddressable)
      UnoRuntime.queryInterface(com.sun.star.sheet.XCellAddressable.class, xCell);
  com.sun.star.table.CellAddress aAddress = xCellAddr.getCellAddress();
 
  String aText = "Address of this cell: Column=" + aAddress.Column;
  aText += "; Row=" + aAddress.Row;
  aText += "; Sheet=" + aAddress.Sheet;
  System.out.println(aText);
Content on this page is licensed under the Public Documentation License (PDL).
Personal tools
In other languages