Files
AdditionalLibs/B4J/jExcel.xml

964 lines
33 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<root>
<doclet-version-NOT-library-version>1.04</doclet-version-NOT-library-version>
<class>
<name>anywheresoftware.b4a.objects.WorkbookWrapper</name>
<shortname>ReadableWorkbook</shortname>
<comment>This library wraps the open source jexcel project. It allows reading and writing Microsoft Excel files.
See the tutorial in the forum for more information.</comment>
<objectwrapper>jxl.Workbook</objectwrapper>
<owner>process</owner>
<event>Ready (Success As Boolean)</event>
<method>
<name>Initialize</name>
<comment>Opens the given workbook in read-only mode.</comment>
<returntype>void</returntype>
<parameter>
<name>Dir</name>
<type>java.lang.String</type>
</parameter>
<parameter>
<name>FileName</name>
<type>java.lang.String</type>
</parameter>
</method>
<method>
<name>Close</name>
<comment>Closes the workbook.</comment>
<returntype>void</returntype>
</method>
<method>
<name>InitializeAsync</name>
<comment>Opens the file asynchronously. The Ready event will be raised when the workbook is ready.</comment>
<returntype>void</returntype>
<parameter>
<name>ba</name>
<type>anywheresoftware.b4a.BA</type>
</parameter>
<parameter>
<name>EventName</name>
<type>java.lang.String</type>
</parameter>
<parameter>
<name>Dir</name>
<type>java.lang.String</type>
</parameter>
<parameter>
<name>FileName</name>
<type>java.lang.String</type>
</parameter>
</method>
<method>
<name>GetSheet</name>
<comment>Gets the sheet at the specified index (first sheet is at index 0).</comment>
<returntype>anywheresoftware.b4a.objects.WorkbookWrapper.AbsSheetWrapper.SheetWrapper</returntype>
<parameter>
<name>Index</name>
<type>int</type>
</parameter>
</method>
<method>
<name>IsInitialized</name>
<comment></comment>
<returntype>boolean</returntype>
</method>
<method>
<name>GetSheetNames</name>
<comment>Returns an array with the sheets names.</comment>
<returntype>java.lang.String[]</returntype>
</method>
<property>
<name>NumberOfSheets</name>
<returntype>int</returntype>
<comment>Returns the number of sheets.</comment>
</property>
<field>
<name>Encoding</name>
<comment>Gets or sets the encoding. Must be set before Initialize is called.</comment>
<returntype>java.lang.String</returntype>
</field>
</class>
<class>
<name>anywheresoftware.b4a.objects.WorkbookWrapper.WritableWorkbookWrapper</name>
<shortname>WritableWorkbook</shortname>
<objectwrapper>jxl.write.WritableWorkbook</objectwrapper>
<owner>process</owner>
<method>
<name>Initialize</name>
<comment>Initializes the output file. &lt;b&gt;The output file will be deleted if it already exists.&lt;/b&gt;</comment>
<returntype>void</returntype>
<parameter>
<name>Dir</name>
<type>java.lang.String</type>
</parameter>
<parameter>
<name>FileName</name>
<type>java.lang.String</type>
</parameter>
</method>
<method>
<name>Close</name>
<comment>Closes the workbook.</comment>
<returntype>void</returntype>
</method>
<method>
<name>Write</name>
<comment>Writes the data to the disk.</comment>
<returntype>void</returntype>
</method>
<method>
<name>GetSheet</name>
<comment>Gets the sheet at the specified index (first sheet is at index 0).</comment>
<returntype>anywheresoftware.b4a.objects.WorkbookWrapper.AbsSheetWrapper.WritableSheetWrapper</returntype>
<parameter>
<name>Index</name>
<type>int</type>
</parameter>
</method>
<method>
<name>RemoveSheet</name>
<comment>Removes the sheet at the given index.</comment>
<returntype>void</returntype>
<parameter>
<name>Index</name>
<type>int</type>
</parameter>
</method>
<method>
<name>AddSheet</name>
<comment>Adds a new sheet with the given name and at the specific index.</comment>
<returntype>anywheresoftware.b4a.objects.WorkbookWrapper.AbsSheetWrapper.WritableSheetWrapper</returntype>
<parameter>
<name>Name</name>
<type>java.lang.String</type>
</parameter>
<parameter>
<name>Index</name>
<type>int</type>
</parameter>
</method>
<method>
<name>Initialize2</name>
<comment>Initializes the output file and creates a copy of the given workbook.
&lt;b&gt;The output file will be deleted if it already exists.&lt;/b&gt;</comment>
<returntype>void</returntype>
<parameter>
<name>Dir</name>
<type>java.lang.String</type>
</parameter>
<parameter>
<name>FileName</name>
<type>java.lang.String</type>
</parameter>
<parameter>
<name>Workbook</name>
<type>jxl.Workbook</type>
</parameter>
</method>
<method>
<name>IsInitialized</name>
<comment></comment>
<returntype>boolean</returntype>
</method>
<method>
<name>GetSheetNames</name>
<comment>Returns an array with the sheets names.</comment>
<returntype>java.lang.String[]</returntype>
</method>
<property>
<name>NumberOfSheets</name>
<returntype>int</returntype>
<comment>Returns the number of sheets.</comment>
</property>
<field>
<name>Encoding</name>
<comment>Gets or sets the encoding. Must be set before Initialize is called.</comment>
<returntype>java.lang.String</returntype>
</field>
</class>
<class>
<name>anywheresoftware.b4a.objects.WorkbookWrapper.AbsSheetWrapper.SheetWrapper</name>
<shortname>ReadableSheet</shortname>
<objectwrapper>jxl.Sheet</objectwrapper>
<owner>process</owner>
<event>ValuesAvailable (Success As Boolean, Rows As List)</event>
<method>
<name>GetAllAsync</name>
<comment>Asynchronously retrieves all the values in the sheet.
The ValuesAvailable event is raised when the data is ready with a List that holds the data.
Each item in the list is an array of strings that represents a single row.</comment>
<returntype>void</returntype>
<parameter>
<name>ba</name>
<type>anywheresoftware.b4a.BA</type>
</parameter>
<parameter>
<name>EventName</name>
<type>java.lang.String</type>
</parameter>
</method>
<method>
<name>GetCellValue</name>
<comment>Returns the string value of the cell at the given column and row.
(0, 0) is equivalent to A0.
(0, 1) is equivalent to A1.
(1, 0) is equivalent to B0.</comment>
<returntype>java.lang.String</returntype>
<parameter>
<name>Col</name>
<type>int</type>
</parameter>
<parameter>
<name>Row</name>
<type>int</type>
</parameter>
</method>
<method>
<name>IsInitialized</name>
<comment></comment>
<returntype>boolean</returntype>
</method>
<property>
<name>Name</name>
<returntype>java.lang.String</returntype>
<comment>Gets the sheet's name.</comment>
</property>
<property>
<name>RowsCount</name>
<returntype>int</returntype>
<comment>Returns the number of rows.</comment>
</property>
<property>
<name>ColumnsCount</name>
<returntype>int</returntype>
<comment>Returns the number of columns.</comment>
</property>
</class>
<class>
<name>anywheresoftware.b4a.objects.WorkbookWrapper.AbsSheetWrapper.WritableSheetWrapper</name>
<shortname>WritableSheet</shortname>
<objectwrapper>jxl.write.WritableSheet</objectwrapper>
<owner>process</owner>
<event>ValuesAvailable (Success As Boolean, Rows As List)</event>
<method>
<name>GetAllAsync</name>
<comment>Asynchronously retrieves all the values in the sheet.
The ValuesAvailable event is raised when the data is ready with a List that holds the data.
Each item in the list is an array of strings that represents a single row.</comment>
<returntype>void</returntype>
<parameter>
<name>ba</name>
<type>anywheresoftware.b4a.BA</type>
</parameter>
<parameter>
<name>EventName</name>
<type>java.lang.String</type>
</parameter>
</method>
<method>
<name>SetRowHeight</name>
<comment></comment>
<returntype>void</returntype>
<parameter>
<name>Row</name>
<type>int</type>
</parameter>
<parameter>
<name>Height</name>
<type>float</type>
</parameter>
</method>
<method>
<name>AddCell</name>
<comment>Adds a new cell to the sheet.</comment>
<returntype>void</returntype>
<parameter>
<name>Cell</name>
<type>jxl.write.WritableCell</type>
</parameter>
</method>
<method>
<name>SetColumnWidth</name>
<comment></comment>
<returntype>void</returntype>
<parameter>
<name>Col</name>
<type>int</type>
</parameter>
<parameter>
<name>Width</name>
<type>int</type>
</parameter>
</method>
<method>
<name>GetCellValue</name>
<comment>Returns the string value of the cell at the given column and row.
(0, 0) is equivalent to A0.
(0, 1) is equivalent to A1.
(1, 0) is equivalent to B0.</comment>
<returntype>java.lang.String</returntype>
<parameter>
<name>Col</name>
<type>int</type>
</parameter>
<parameter>
<name>Row</name>
<type>int</type>
</parameter>
</method>
<method>
<name>IsInitialized</name>
<comment></comment>
<returntype>boolean</returntype>
</method>
<property>
<name>Name</name>
<returntype>java.lang.String</returntype>
<parameter>
<name>v</name>
<type>java.lang.String</type>
</parameter>
<comment>Gets the sheet's name.</comment>
</property>
<property>
<name>RowsCount</name>
<returntype>int</returntype>
<comment>Returns the number of rows.</comment>
</property>
<property>
<name>ColumnsCount</name>
<returntype>int</returntype>
<comment>Returns the number of columns.</comment>
</property>
</class>
<class>
<name>anywheresoftware.b4a.objects.WorkbookWrapper.AbsSheetWrapper.WritableCellWrapper</name>
<shortname>WritableCell</shortname>
<objectwrapper>jxl.write.WritableCell</objectwrapper>
<owner>process</owner>
<method>
<name>InitializeFormula</name>
<comment>Creates a new WritableCell in the given coordinates and formula.
Call WritableSheet.AddCell to add it to the sheet.
&lt;code&gt;
cell.InitializeFormula(0, 1, "34 + 34")
sheet1.AddCell(cell)&lt;/code&gt;</comment>
<returntype>void</returntype>
<parameter>
<name>Col</name>
<type>int</type>
</parameter>
<parameter>
<name>Row</name>
<type>int</type>
</parameter>
<parameter>
<name>Formula</name>
<type>java.lang.String</type>
</parameter>
</method>
<method>
<name>InitializeNumber</name>
<comment>Creates a new WritableCell in the given coordinates and number value.
Call WritableSheet.AddCell to add it to the sheet.</comment>
<returntype>void</returntype>
<parameter>
<name>Col</name>
<type>int</type>
</parameter>
<parameter>
<name>Row</name>
<type>int</type>
</parameter>
<parameter>
<name>Value</name>
<type>double</type>
</parameter>
</method>
<method>
<name>SetCellFormat</name>
<comment>Sets the cell format. Note that you can use the same WritableCellFormat for multiple cells.</comment>
<returntype>void</returntype>
<parameter>
<name>CellFormat</name>
<type>anywheresoftware.b4a.objects.WorkbookWrapper.AbsSheetWrapper.WritableCellFormatWrapper</type>
</parameter>
</method>
<method>
<name>InitializeText</name>
<comment>Creates a new WritableCell in the given coordinates and text value.
Call WritableSheet.AddCell to add it to the sheet.</comment>
<returntype>void</returntype>
<parameter>
<name>Col</name>
<type>int</type>
</parameter>
<parameter>
<name>Row</name>
<type>int</type>
</parameter>
<parameter>
<name>Value</name>
<type>java.lang.String</type>
</parameter>
</method>
<method>
<name>IsInitialized</name>
<comment></comment>
<returntype>boolean</returntype>
</method>
</class>
<class>
<name>anywheresoftware.b4a.objects.WorkbookWrapper.AbsSheetWrapper.WritableCellFormatWrapper</name>
<shortname>WritableCellFormat</shortname>
<objectwrapper>jxl.write.WritableCellFormat</objectwrapper>
<owner>process</owner>
<method>
<name>Initialize</name>
<comment>Creates a new WritableCellFormat with the default settings.</comment>
<returntype>void</returntype>
</method>
<method>
<name>SetBorder</name>
<comment>Sets the cell's border.
Border - One of the BORDER constants.
Style - One of the BORDER_STYLE constants.
BorderColor - One of the COLOR constants.</comment>
<returntype>void</returntype>
<parameter>
<name>Border</name>
<type>jxl.format.Border</type>
</parameter>
<parameter>
<name>Style</name>
<type>jxl.format.BorderLineStyle</type>
</parameter>
<parameter>
<name>BorderColor</name>
<type>jxl.format.Colour</type>
</parameter>
</method>
<method>
<name>Initialize2</name>
<comment>Creates a new WritableCellFormat with the specified font style.
Font - One of the FONT constants.
FontSize - Default value is 10.
Bold - Whether the text should be bold.
Underline - Whether the text should be underlined.
Italic - Whether the text style should be italic.
FontColor - One of the COLOR constants.</comment>
<returntype>void</returntype>
<parameter>
<name>Font</name>
<type>jxl.write.WritableFont.FontName</type>
</parameter>
<parameter>
<name>FontSize</name>
<type>int</type>
</parameter>
<parameter>
<name>Bold</name>
<type>boolean</type>
</parameter>
<parameter>
<name>Underline</name>
<type>boolean</type>
</parameter>
<parameter>
<name>Italic</name>
<type>boolean</type>
</parameter>
<parameter>
<name>FontColor</name>
<type>jxl.format.Colour</type>
</parameter>
</method>
<method>
<name>IsInitialized</name>
<comment></comment>
<returntype>boolean</returntype>
</method>
<property>
<name>HorizontalAlignment</name>
<parameter>
<name>v</name>
<type>jxl.format.Alignment</type>
</parameter>
<comment>Sets the cell's horizontal alignment. The value should be one of the HALIGN constants.</comment>
</property>
<property>
<name>BackgroundColor</name>
<parameter>
<name>Clr</name>
<type>jxl.format.Colour</type>
</parameter>
<comment>Sets the cell's background color. The color should be one of the COLOR constants.</comment>
</property>
<property>
<name>VertivalAlignment</name>
<parameter>
<name>v</name>
<type>jxl.format.VerticalAlignment</type>
</parameter>
<comment>Sets the cell's vertical alignment. The value should be one of the VALIGN constants.</comment>
</property>
<field>
<name>COLOR_CORAL</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_TEAL2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_LIGHT_TURQUOISE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_TURQUOISE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_STYLE_DOUBLE</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>FONT_ARIAL</name>
<comment></comment>
<returntype>jxl.write.WritableFont.FontName</returntype>
</field>
<field>
<name>COLOR_TEAL</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_UNKNOWN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_STYLE_DASH_DOT</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>COLOR_BLUE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_ROSE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_BLUE_GREY</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_BLUE2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_DARK_BLUE2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_ORANGE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_BOTTOM</name>
<comment></comment>
<returntype>jxl.format.Border</returntype>
</field>
<field>
<name>BORDER_STYLE_THIN</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>COLOR_DARK_TEAL</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_DARK_BLUE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>FONT_TIMES</name>
<comment></comment>
<returntype>jxl.write.WritableFont.FontName</returntype>
</field>
<field>
<name>COLOR_IVORY</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_PINK2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_BRIGHT_GREEN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_SEA_GREEN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_PINK</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_AUTOMATIC</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_GREY_50_PERCENT</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>FONT_TAHOMA</name>
<comment></comment>
<returntype>jxl.write.WritableFont.FontName</returntype>
</field>
<field>
<name>BORDER_STYLE_MEDIUM_DASHED</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>COLOR_GREEN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_BLACK</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_TAN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_STYLE_MEDIUM</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>VALIGN_JUSTIFY</name>
<comment></comment>
<returntype>jxl.format.VerticalAlignment</returntype>
</field>
<field>
<name>VALIGN_TOP</name>
<comment></comment>
<returntype>jxl.format.VerticalAlignment</returntype>
</field>
<field>
<name>HALIGN_RIGHT</name>
<comment></comment>
<returntype>jxl.format.Alignment</returntype>
</field>
<field>
<name>COLOR_LAVENDER</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>HALIGN_GENERAL</name>
<comment></comment>
<returntype>jxl.format.Alignment</returntype>
</field>
<field>
<name>BORDER_STYLE_DASHED</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>VALIGN_CENTRE</name>
<comment></comment>
<returntype>jxl.format.VerticalAlignment</returntype>
</field>
<field>
<name>BORDER_STYLE_THICK</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>BORDER_STYLE_DASH_DOT_DOT</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>COLOR_ICE_BLUE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_STYLE_SLANTED_DASH_DOT</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>COLOR_LIME</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_PLUM</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_AQUA</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_LIGHT_ORANGE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_GREY_25_PERCENT</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_VERY_LIGHT_YELLOW</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_GOLD</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>HALIGN_JUSTIFY</name>
<comment></comment>
<returntype>jxl.format.Alignment</returntype>
</field>
<field>
<name>BORDER_TOP</name>
<comment></comment>
<returntype>jxl.format.Border</returntype>
</field>
<field>
<name>COLOR_BROWN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_TURQOISE2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_OLIVE_GREEN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_WHITE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_LEFT</name>
<comment></comment>
<returntype>jxl.format.Border</returntype>
</field>
<field>
<name>BORDER_STYLE_NONE</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>BORDER_RIGHT</name>
<comment></comment>
<returntype>jxl.format.Border</returntype>
</field>
<field>
<name>COLOR_PALE_BLUE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_DARK_YELLOW</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_DARK_GREEN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_DARK_RED</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_STYLE_MEDIUM_DASH_DOT_DOT</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>COLOR_PLUM2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_YELLOW2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_VIOLET</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_GREY_80_PERCENT</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_OCEAN_BLUE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_NONE</name>
<comment></comment>
<returntype>jxl.format.Border</returntype>
</field>
<field>
<name>VALIGN_BOTTOM</name>
<comment></comment>
<returntype>jxl.format.VerticalAlignment</returntype>
</field>
<field>
<name>HALIGN_LEFT</name>
<comment></comment>
<returntype>jxl.format.Alignment</returntype>
</field>
<field>
<name>COLOR_SKY_BLUE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>HALIGN_FILL</name>
<comment></comment>
<returntype>jxl.format.Alignment</returntype>
</field>
<field>
<name>HALIGN_CENTRE</name>
<comment></comment>
<returntype>jxl.format.Alignment</returntype>
</field>
<field>
<name>COLOR_VIOLET2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_INDIGO</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_LIGHT_TURQUOISE2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_GREY_40_PERCENT</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_DARK_PURPLE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_RED</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>FONT_COURIER</name>
<comment></comment>
<returntype>jxl.write.WritableFont.FontName</returntype>
</field>
<field>
<name>COLOR_LIGHT_GREEN</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_STYLE_DOTTED</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>COLOR_LIGHT_BLUE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>COLOR_DARK_RED2</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
<field>
<name>BORDER_ALL</name>
<comment></comment>
<returntype>jxl.format.Border</returntype>
</field>
<field>
<name>BORDER_STYLE_HAIR</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>BORDER_STYLE_MEDIUM_DASH_DOT</name>
<comment></comment>
<returntype>jxl.format.BorderLineStyle</returntype>
</field>
<field>
<name>COLOR_PERIWINKLE</name>
<comment></comment>
<returntype>jxl.format.Colour</returntype>
</field>
</class>
<version>1.0</version>
<dependsOn>jxl</dependsOn>
</root>