javax.swing.JTextArea.getLineWrap()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(1.8k)|赞(0)|评价(0)|浏览(194)

本文整理了Java中javax.swing.JTextArea.getLineWrap()方法的一些代码示例,展示了JTextArea.getLineWrap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JTextArea.getLineWrap()方法的具体详情如下:
包路径:javax.swing.JTextArea
类名称:JTextArea
方法名:getLineWrap

JTextArea.getLineWrap介绍

暂无

代码示例

代码示例来源:origin: Waikato/meka

/**
 * Returns whether line wrap is enabled.
 *
 * @return        true if line wrap wrap is enabled
 */
public boolean getLineWrap() {
  return m_TextCode.getLineWrap();
}

代码示例来源:origin: mucommander/mucommander

public boolean isWrap() {
  return textArea.getLineWrap();
}

代码示例来源:origin: net.sf.meka/meka

/**
 * Returns whether line wrap is enabled.
 *
 * @return        true if line wrap wrap is enabled
 */
public boolean getLineWrap() {
  return m_TextCode.getLineWrap();
}

代码示例来源:origin: stackoverflow.com

public void actionPerformed( ActionEvent e )
 textArea.setLineWrap( !textArea.getLineWrap() );

代码示例来源:origin: stackoverflow.com

public View create(Element elem) {
  Document doc = elem.getDocument();
  Object i18nFlag = doc.getProperty("i18n"/*AbstractDocument.I18NProperty*/);
  if ((i18nFlag != null) && i18nFlag.equals(Boolean.TRUE)) {
    // build a view that support bidi
    return createI18N(elem);
  } else {
    JTextComponent c = getComponent();
    if (c instanceof JTextArea) {
    JTextArea area = (JTextArea) c;
    View v;
    if (area.getLineWrap()) {
      v = new WrappedPlainView(elem, area.getWrapStyleWord());
    } else {
      v = new PlainView(elem);
    }
    return v;
    }
  }
  return null;
}

代码示例来源:origin: stackoverflow.com

@Override
public void actionPerformed(ActionEvent e) {
  ta.setLineWrap(!ta.getLineWrap());

代码示例来源:origin: stackoverflow.com

testFrame.add( wordWrap, BorderLayout.NORTH );
final JCheckBox lineWrap = new JCheckBox( "line wrap" );
lineWrap.setSelected( textArea.getLineWrap() );
lineWrap.addItemListener( new ItemListener() {
 @Override

代码示例来源:origin: stackoverflow.com

JTextArea area = (JTextArea) c;
View v;
if (area.getLineWrap()) {
  v = new CustomWrappedPlainView(elem, area.getWrapStyleWord());
} else {

相关文章

JTextArea类方法