org.zkoss.zul.Label.setMultiline()方法的使用及代码示例

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

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

Label.setMultiline介绍

[英]Sets whether to preserve the new line and the white spaces at the beginning of each line.
[中]设置是否保留新行和每行开头的空白。

代码示例

代码示例来源:origin: org.zkoss.zk/zul

public void setValue(Component cmp, Boolean multiline) {
  ((Label) cmp).setMultiline(multiline);
}

代码示例来源:origin: org.carewebframework/org.carewebframework.cal.ui.reporting

/**
 * Add a row containing the specified header (left column) and value container (right column).
 *
 * @param header Text for header column
 * @param container Object containing text value(s)
 */
protected void addRow(String header, Component container) {
  Row row = new Row();
  grid.getRows().appendChild(row);
  Div div = new Div();
  Label label = new Label(header + ":");
  label.setMultiline(true);
  label.setMaxlength(40);
  label.setStyle("font-weight:bold;word-wrap:word-break");
  row.appendChild(div);
  row.appendChild(label);
  row.appendChild(container);
}

代码示例来源:origin: org.carewebframework/org.carewebframework.vista.ui.documents

/**
 * Render the list item for the specified document.
 *
 * @param item List item to render.
 * @param doc The document associated with the list item.
 */
@Override
public void renderItem(final Listitem item, final Document doc) {
  final Listcell cell = new Listcell();
  item.appendChild(cell);
  final Div sep = new Div();
  sep.setSclass("vista-documents-sep");
  cell.appendChild(sep);
  final Div div = new Div();
  div.setSclass(Constants.SCLASS_TEXT_REPORT_TITLE);
  cell.appendChild(div);
  final Hbox boxHeader = new Hbox();
  final Label header = new Label(doc.getTitle());
  header.setZclass(Constants.SCLASS_TEXT_REPORT_TITLE);
  boxHeader.appendChild(header);
  div.appendChild(boxHeader);
  Label body = new Label(doc.getBody());
  body.setMultiline(true);
  body.setPre(true);
  cell.appendChild(body);
}

相关文章