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

📄 patternformat.html

📁 永中OFFICE二次开发帮助文档
💻 HTML
📖 第 1 页 / 共 2 页
字号:
<PRE>
public java.awt.Color <B>getPatternBackground</B>()</PRE>
<DL>
<DD>获取图形对象图案线条的背景色。
<P>
<DD><DL>

<DT><B>返回:</B><DD>图案线条的背景色<p><b>例子:</b><pre> Shapes shapes = Application.getWorkbooks().getActiveWorkbook().getActiveShapes(); Shape shape = shapes.getShape("圆柱形 4"); LineFormat line = shape.getLineFormat(); PatternFormat pf = line.getPatternFormat(); javax.swing.JOptionPane.showMessageDialog(null,"当前对象的图案背景色是"+pf.getPatternBackground());</pre></DL>
</DD>
</DL>
<HR>

<A NAME="getPatternForeground()"><!-- --></A><H3>
getPatternForeground</H3>
<PRE>
public java.awt.Color <B>getPatternForeground</B>()</PRE>
<DL>
<DD>获取图形对象图案线条的前景色。
<P>
<DD><DL>

<DT><B>返回:</B><DD>图案线条的前景色<p><b>例子:</b><pre> Shapes shapes = Application.getWorkbooks().getActiveWorkbook().getActiveShapes(); Shape shape = shapes.getShape("圆柱形 4"); LineFormat line = shape.getLineFormat(); PatternFormat pf = line.getPatternFormat(); javax.swing.JOptionPane.showMessageDialog(null,"当前对象的图案前景色是"+pf.getPatternForeground());</pre></DL>
</DD>
</DL>
<HR>

<A NAME="getPatternIndex()"><!-- --></A><H3>
getPatternIndex</H3>
<PRE>
public int <B>getPatternIndex</B>()</PRE>
<DL>
<DD>获取图形对象的线条图案索引。
<P>
<DD><DL>

<DT><B>返回:</B><DD>线条图案的索引,为整型值 如没有设置图案索引值,则返回-1<p><b>例子:</b><pre> Shapes shapes = Application.getWorkbooks().getActiveWorkbook().getActiveShapes(); Shape shape = shapes.getShape("圆柱形 4"); LineFormat line = shape.getLineFormat(); PatternFormat pf = line.getPatternFormat(); javax.swing.JOptionPane.showMessageDialog(null,"当前对象的图案是第"+pf.getPatternIndex()+"种索引");</pre></DL>
</DD>
</DL>
<HR>

<A NAME="setColor(java.awt.Color)"><!-- --></A><H3>
setColor</H3>
<PRE>
public void <B>setColor</B>(java.awt.Color&nbsp;color)</PRE>
<DL>
<DD>设置图形对象线条的颜色。
<P>
<DD><DL>
<DT><B>参数:</B><DD><CODE>color</CODE> - 线条颜色<p><b>例子:</b><pre> Shapes shapes = Application.getWorkbooks().getActiveWorkbook().getActiveShapes(); Shape shape = shapes.getShape("直线 1"); LineFormat line = shape.getLineFormat(); PatternFormat pf = line.getPatternFormat(); pf.setColor(java.awt.Color.red);</pre></DL>
</DD>
</DL>
<HR>

<A NAME="setNoColor()"><!-- --></A><H3>
setNoColor</H3>
<PRE>
public void <B>setNoColor</B>()</PRE>
<DL>
<DD>把图形对象的线条颜色设为无。<p><b>例子:</b><pre> Shapes shapes = Application.getWorkbooks().getActiveWorkbook().getActiveShapes(); Shape shape = shapes.getShape("直线 1"); LineFormat line = shape.getLineFormat(); PatternFormat pf = line.getPatternFormat(); pf.setNoColor();</pre>
<P>
<DD><DL>
</DL>
</DD>
</DL>
<HR>

<A NAME="setPatternBackground(java.awt.Color)"><!-- --></A><H3>
setPatternBackground</H3>
<PRE>
public void <B>setPatternBackground</B>(java.awt.Color&nbsp;backColor)</PRE>
<DL>
<DD>设置图形对象图案线条的背景色。
<P>
<DD><DL>
<DT><B>参数:</B><DD><CODE>backColor</CODE> - 线条图案的背景色<p><b>例子:</b><pre> Shapes shapes = Application.getWorkbooks().getActiveWorkbook().getActiveShapes(); Shape shape = shapes.getShape("圆柱形 4"); LineFormat line = shape.getLineFormat(); PatternFormat pf = line.getPatternFormat(); pf.setPatternBackground(java.awt.Color.red);</pre></DL>
</DD>
</DL>
<HR>

<A NAME="setPatternForeground(java.awt.Color)"><!-- --></A><H3>
setPatternForeground</H3>
<PRE>
public void <B>setPatternForeground</B>(java.awt.Color&nbsp;foreColor)</PRE>
<DL>
<DD>设置图形对象线条图案的前景色。
<P>
<DD><DL>
<DT><B>参数:</B><DD><CODE>foreColor</CODE> - 线条图案的前景色<p><b>例子:</b><pre> <pre> Shapes shapes = Application.getWorkbooks().getActiveWorkbook().getActiveShapes(); Shape shape = shapes.getShape("圆柱形 4"); LineFormat line = shape.getLineFormat(); PatternFormat pf = line.getPatternFormat(); pf.setPatternForeground(java.awt.Color.yellow); </pre></DL>
</DD>
</DL>
<HR>

<A NAME="setPatternIndex(int)"><!-- --></A><H3>
setPatternIndex</H3>
<PRE>
public void <B>setPatternIndex</B>(int&nbsp;patternIndex)</PRE>
<DL>
<DD>设置图形对象的线条图案。
<P>
<DD><DL>
<DT><B>参数:</B><DD><CODE>patternIndex</CODE> - 线条图案索引<p><b>例子:</b><pre> Shapes shapes = Application.getWorkbooks().getActiveWorkbook().getActiveShapes(); Shape shape = shapes.getShape("立方体 2"); LineFormat line = shape.getLineFormat(); PatternFormat pf = line.getPatternFormat(); pf.setPatternIndex(2); </pre></DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>


<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="跳过导航链接"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 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>概述</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>类</B></FONT>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD>
  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</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="../../../../application/workbooks/workbook/shapes/Nodes.html" title="application.workbooks.workbook.shapes 中的类"><B>上一个类</B></A>&nbsp;
&nbsp;<A HREF="../../../../application/workbooks/workbook/shapes/PictureFormat.html" title="application.workbooks.workbook.shapes 中的类"><B>下一个类</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
  <A HREF="../../../../index.html?application/workbooks/workbook/shapes/PatternFormat.html" target="_top"><B>框架</B></A>  &nbsp;
&nbsp;<A HREF="PatternFormat.html" target="_top"><B>无框架</B></A>  &nbsp;
&nbsp;<SCRIPT type="text/javascript">
  <!--
  if(window==top) {
    document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>所有类</B></A>');
  }
  //-->
</SCRIPT>
<NOSCRIPT>
  <A HREF="../../../../allclasses-noframe.html"><B>所有类</B></A>
</NOSCRIPT>


</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
  摘要:&nbsp;嵌套&nbsp;|&nbsp;字段&nbsp;|&nbsp;构造方法&nbsp;|&nbsp;<A HREF="#method_summary">方法</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
详细信息:&nbsp;字段&nbsp;|&nbsp;构造方法&nbsp;|&nbsp;<A HREF="#method_detail">方法</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->

<HR>
版权所有 2001-2006 无锡永中科技有限公司
</BODY>
</HTML>

⌨️ 快捷键说明

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