com.stimulsoft.report.components.enums
Enum StiReportControlToolboxPosition

java.lang.Object
  extended by java.lang.Enum<StiReportControlToolboxPosition>
      extended by com.stimulsoft.report.components.enums.StiReportControlToolboxPosition
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StiReportControlToolboxPosition>

public enum StiReportControlToolboxPosition
extends java.lang.Enum<StiReportControlToolboxPosition>

Enumeration which sets positions of the report controls on the toolbox in the report designer.


Enum Constant Summary
ButtonControl
          Sets a position of the Button control on the toolbox of the designer.
CheckBoxControl
          Sets a position of the CheckBox control on the toolbox of the designer.
CheckedListBoxControl
          Sets a position of the CheckListBox control on the toolbox of the designer.
ComboBoxControl
          Sets a position of the ComboBox control on the toolbox of the designer.
DateTimePickerControl
          Sets a position of the DateTimePicker control on the toolbox of the designer.
GridControl
          Sets a position of the Grid control on the toolbox of the designer.
GroupBoxControl
          Sets a position of the GroupBox control on the toolbox of the designer.
LabelControl
          Sets a position of the Label control on the toolbox of the designer.
ListBoxControl
          Sets a position of the ListBox control on the toolbox of the designer.
ListViewControl
          Sets a position of the ListView control on the toolbox of the designer.
LookUpBoxControl
          Sets a position of the LookUpBox control on the toolbox of the designer.
NumericUpDownControl
          Sets a position of the NumericUpDown control on the toolbox of the designer.
PanelControl
          Sets a position of the Panel control on the toolbox of the designer.
PictureBoxControl
          Sets a position of the PictureBox control on the toolbox of the designer.
RadioButtonControl
          Sets a position of the RadioButton control on the toolbox of the designer.
ReportControl
           
RichTextBoxControl
          Sets a position of the RichTextBox control on the toolbox of the designer.
TextBoxControl
          Sets a position of the TextBox control on the toolbox of the designer.
TreeViewControl
          Sets a position of the TreeView control on the toolbox of the designer.
UserControl
          Sets a position of the User control on the toolbox of the designer.
 
Method Summary
static StiReportControlToolboxPosition forValue(int value)
           
 int getValue()
           
static StiReportControlToolboxPosition valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StiReportControlToolboxPosition[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ReportControl

public static final StiReportControlToolboxPosition ReportControl

LabelControl

public static final StiReportControlToolboxPosition LabelControl
Sets a position of the Label control on the toolbox of the designer.


TextBoxControl

public static final StiReportControlToolboxPosition TextBoxControl
Sets a position of the TextBox control on the toolbox of the designer.


GroupBoxControl

public static final StiReportControlToolboxPosition GroupBoxControl
Sets a position of the GroupBox control on the toolbox of the designer.


ButtonControl

public static final StiReportControlToolboxPosition ButtonControl
Sets a position of the Button control on the toolbox of the designer.


CheckBoxControl

public static final StiReportControlToolboxPosition CheckBoxControl
Sets a position of the CheckBox control on the toolbox of the designer.


RadioButtonControl

public static final StiReportControlToolboxPosition RadioButtonControl
Sets a position of the RadioButton control on the toolbox of the designer.


ListBoxControl

public static final StiReportControlToolboxPosition ListBoxControl
Sets a position of the ListBox control on the toolbox of the designer.


ComboBoxControl

public static final StiReportControlToolboxPosition ComboBoxControl
Sets a position of the ComboBox control on the toolbox of the designer.


LookUpBoxControl

public static final StiReportControlToolboxPosition LookUpBoxControl
Sets a position of the LookUpBox control on the toolbox of the designer.


CheckedListBoxControl

public static final StiReportControlToolboxPosition CheckedListBoxControl
Sets a position of the CheckListBox control on the toolbox of the designer.


DateTimePickerControl

public static final StiReportControlToolboxPosition DateTimePickerControl
Sets a position of the DateTimePicker control on the toolbox of the designer.


NumericUpDownControl

public static final StiReportControlToolboxPosition NumericUpDownControl
Sets a position of the NumericUpDown control on the toolbox of the designer.


PictureBoxControl

public static final StiReportControlToolboxPosition PictureBoxControl
Sets a position of the PictureBox control on the toolbox of the designer.


GridControl

public static final StiReportControlToolboxPosition GridControl
Sets a position of the Grid control on the toolbox of the designer.


TreeViewControl

public static final StiReportControlToolboxPosition TreeViewControl
Sets a position of the TreeView control on the toolbox of the designer.


ListViewControl

public static final StiReportControlToolboxPosition ListViewControl
Sets a position of the ListView control on the toolbox of the designer.


PanelControl

public static final StiReportControlToolboxPosition PanelControl
Sets a position of the Panel control on the toolbox of the designer.


RichTextBoxControl

public static final StiReportControlToolboxPosition RichTextBoxControl
Sets a position of the RichTextBox control on the toolbox of the designer.


UserControl

public static final StiReportControlToolboxPosition UserControl
Sets a position of the User control on the toolbox of the designer.

Method Detail

values

public static StiReportControlToolboxPosition[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (StiReportControlToolboxPosition c : StiReportControlToolboxPosition.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static StiReportControlToolboxPosition valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getValue

public int getValue()

forValue

public static StiReportControlToolboxPosition forValue(int value)