⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tablecolumn.html

📁 这是一个报表开发包,支持中国样式的报表,支持分组和交叉报表
💻 HTML
📖 第 1 页 / 共 2 页
字号:
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>

<A NAME="TableColumn()"><!-- --></A><H3>
TableColumn</H3>
<PRE>
public <B>TableColumn</B>()</PRE>
<DL>
</DL>
<HR>

<A NAME="TableColumn(int)"><!-- --></A><H3>
TableColumn</H3>
<PRE>
public <B>TableColumn</B>(int&nbsp;cellCount)</PRE>
<DL>
<DT><B>Parameters:</B><DD><CODE>cellCount</CODE> - 单元数</DL>

<!-- ============ METHOD DETAIL ========== -->

<A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>

<A NAME="getCells()"><!-- --></A><H3>
getCells</H3>
<PRE>
public <A HREF="../../../../com/lucaslee/report/model/TableCell.html" title="class in com.lucaslee.report.model">TableCell</A>[] <B>getCells</B>()</PRE>
<DL>
<DD>获得列中所有单元。
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html#getCells()">getCells</A></CODE> in class <CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html" title="class in com.lucaslee.report.model">TableLine</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>TableCell[]</DL>
</DD>
</DL>
<HR>

<A NAME="getCellCount()"><!-- --></A><H3>
getCellCount</H3>
<PRE>
public int <B>getCellCount</B>()</PRE>
<DL>
<DD>获得列中单元数。
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html#getCellCount()">getCellCount</A></CODE> in class <CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html" title="class in com.lucaslee.report.model">TableLine</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Returns:</B><DD>int</DL>
</DD>
</DL>
<HR>

<A NAME="addCell(com.lucaslee.report.model.TableCell)"><!-- --></A><H3>
addCell</H3>
<PRE>
public void <B>addCell</B>(<A HREF="../../../../com/lucaslee/report/model/TableCell.html" title="class in com.lucaslee.report.model">TableCell</A>&nbsp;tc)</PRE>
<DL>
<DD>向列中添加单元。
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html#addCell(com.lucaslee.report.model.TableCell)">addCell</A></CODE> in class <CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html" title="class in com.lucaslee.report.model">TableLine</A></CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="getCell(int)"><!-- --></A><H3>
getCell</H3>
<PRE>
public <A HREF="../../../../com/lucaslee/report/model/TableCell.html" title="class in com.lucaslee.report.model">TableCell</A> <B>getCell</B>(int&nbsp;ind)</PRE>
<DL>
<DD>获得指定的单元。
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html#getCell(int)">getCell</A></CODE> in class <CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html" title="class in com.lucaslee.report.model">TableLine</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>ind</CODE> - 列中单元号。<DT><B>Returns:</B><DD>TableCell</DL>
</DD>
</DL>
<HR>

<A NAME="cloneAttribute()"><!-- --></A><H3>
cloneAttribute</H3>
<PRE>
public java.lang.Object <B>cloneAttribute</B>()</PRE>
<DL>
<DD>返回一个克隆对象。 注意:返回的对象只是本对象的复制,不包括子对象的复制, 即复制的对象引用的也是相同子对象。
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="cloneAll()"><!-- --></A><H3>
cloneAll</H3>
<PRE>
public <A HREF="../../../../com/lucaslee/report/model/TableColumn.html" title="class in com.lucaslee.report.model">TableColumn</A> <B>cloneAll</B>()                     throws <A HREF="../../../../com/lucaslee/report/ReportException.html" title="class in com.lucaslee.report">ReportException</A>,                            java.lang.CloneNotSupportedException</PRE>
<DL>
<DD>返回一个完全的克隆对象。 即复制的对象的子对象(包括所有后代)与原对象是不同的。
<P>
<DD><DL>
<DT><B>Throws:</B><DD><CODE><A HREF="../../../../com/lucaslee/report/ReportException.html" title="class in com.lucaslee.report">ReportException</A></CODE><DD><CODE>java.lang.CloneNotSupportedException</CODE></DL>
</DD>
</DL>
<HR>

<A NAME="setSpan(com.lucaslee.report.model.TableCell, int)"><!-- --></A><H3>
setSpan</H3>
<PRE>
public void <B>setSpan</B>(<A HREF="../../../../com/lucaslee/report/model/TableCell.html" title="class in com.lucaslee.report.model">TableCell</A>&nbsp;tc,                    int&nbsp;span)</PRE>
<DL>
<DD>设置单元格的跨度值
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html#setSpan(com.lucaslee.report.model.TableCell, int)">setSpan</A></CODE> in class <CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html" title="class in com.lucaslee.report.model">TableLine</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>tc</CODE> - 单元格<DD><CODE>span</CODE> - 跨度值</DL>
</DD>
</DL>
<HR>

<A NAME="getSpan(com.lucaslee.report.model.TableCell)"><!-- --></A><H3>
getSpan</H3>
<PRE>
public int <B>getSpan</B>(<A HREF="../../../../com/lucaslee/report/model/TableCell.html" title="class in com.lucaslee.report.model">TableCell</A>&nbsp;tc)</PRE>
<DL>
<DD>获得单元格的跨度值.
<P>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html#getSpan(com.lucaslee.report.model.TableCell)">getSpan</A></CODE> in class <CODE><A HREF="../../../../com/lucaslee/report/model/TableLine.html" title="class in com.lucaslee.report.model">TableLine</A></CODE></DL>
</DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>tc</CODE> - <DT><B>Returns:</B><DD></DL>
</DD>
</DL>
<HR>

<A NAME="getData()"><!-- --></A><H3>
getData</H3>
<PRE>
public java.util.Vector <B>getData</B>()</PRE>
<DL>
<DD>获得列数据
<P>
<DD><DL>
<DT><B>Returns:</B><DD></DL>
</DD>
</DL>
<HR>

<A NAME="setData(java.util.Vector)"><!-- --></A><H3>
setData</H3>
<PRE>
public void <B>setData</B>(java.util.Vector&nbsp;data)</PRE>
<DL>
<DD>设置列数据。
<P>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>data</CODE> - </DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>

<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
  <TR ALIGN="center" VALIGN="top">
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>
  </TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>

<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
&nbsp;<A HREF="../../../../com/lucaslee/report/model/TableCell.html" title="class in com.lucaslee.report.model"><B>PREV CLASS</B></A>&nbsp;
&nbsp;<A HREF="../../../../com/lucaslee/report/model/TableLine.html" title="class in com.lucaslee.report.model"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;
&nbsp;<A HREF="TableColumn.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= -->

<HR>

</BODY>
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -