[]
        
(Showing Draft Content)

SelectFieldItem

Class SelectFieldItem

java.lang.Object
com.grapecity.documents.excel.SelectFieldItem

public class SelectFieldItem extends Object
Represents an checkBoxList/radioList item.
  • Constructor Details

    • SelectFieldItem

      public SelectFieldItem()
      Generate an item for check box list or radio button list.
    • SelectFieldItem

      public SelectFieldItem(String text, Object value)
      Generate an item for check box list or radio button list.
      Parameters:
      text - The text of the item.
      value - The value of the item.
  • Method Details

    • getText

      public String getText()
      Gets the text of the item.
    • setText

      public void setText(String text)
      Sets the text of the item.
      Parameters:
      text - The text of the item.
    • getValue

      public Object getValue()
      Gets the value of the item.
      Returns:
      The value of the item.
    • setValue

      public void setValue(Object value)
      Sets the value of the item.
      Parameters:
      value - The value of the item.