RadioButtonActiveXControl

Inheritance: java.lang.Object, com.aspose.cells.ActiveXControlBase, com.aspose.cells.ActiveXControl, com.aspose.cells.ToggleButtonActiveXControl

public class RadioButtonActiveXControl extends ToggleButtonActiveXControl

Represents a RadioButton ActiveX control.

Example

         //Initialize a new workbook.
         Workbook book = new Workbook();
 
         //Add a ToggleButtonActiveXControl.
         Shape shape = book.getWorksheets().get(0).getShapes().addActiveXControl(ControlType.RADIO_BUTTON, 1, 0, 1, 0, 100, 50);
         RadioButtonActiveXControl activeXControl = (RadioButtonActiveXControl)shape.getActiveXControl();
 
         //do your business
 
         //Save the excel file.
         book.save("exmaple.xlsx");

Methods

MethodDescription
equals(Object arg0)
getAccelerator()Gets the accelerator key for the control.
getAlignment()Gets the position of the Caption relative to the control.
getBackOleColor()Gets the ole color of the background.
getCaption()Gets the descriptive text that appears on a control.
getClass()
getData()Gets the binary data of the control.
getFont()Represents the font of the control.
getForeOleColor()Gets the ole color of the foreground.
getGroupName()Gets the group’s name.
getHeight()Gets the height of the control in unit of points.
getIMEMode()Gets the default run-time mode of the Input Method Editor for the control as it receives focus.
getLinkedCell()Gets the linked cell.
getListFillRange()Gets the list fill range.
getMouseIcon()Gets a custom icon to display as the mouse pointer for the control.
getMousePointer()Gets the type of icon displayed as the mouse pointer for the control.
getPicture()Gets the data of the picture.
getPicturePosition()Gets the location of the control’s picture relative to its caption.
getShadow()Indicates whether to show a shadow.
getSpecialEffect()Gets the special effect of the control.
getTextAlign()Represents how to align the text used by the control.
getType()Gets the type of the ActiveX control.
getValue()Indicates if the control is checked or not.
getWidth()Gets the width of the control in unit of points.
getWorkbook()Gets the Workbook object.
hashCode()
isAutoSize()Indicates whether the control will automatically resize to display its entire contents.
isEnabled()Indicates whether the control can receive the focus and respond to user-generated events.
isLocked()Indicates whether data in the control is locked for editing.
isTransparent()Indicates whether the control is transparent.
isTripleState()Indicates how the specified control will display Null values.
isVisible()Indicates whether this control is visible.
isWordWrapped()Indicates whether the contents of the control automatically wrap at the end of a line.
notify()
notifyAll()
setAccelerator(char value)Sets the accelerator key for the control.
setAlignment(int value)Sets the position of the Caption relative to the control.
setAutoSize(boolean value)Indicates whether the control will automatically resize to display its entire contents.
setBackOleColor(int value)Sets the ole color of the background.
setCaption(String value)Sets the descriptive text that appears on a control.
setEnabled(boolean value)Indicates whether the control can receive the focus and respond to user-generated events.
setForeOleColor(int value)Sets the ole color of the foreground.
setGroupName(String value)Sets the group’s name.
setHeight(double value)Sets the height of the control in unit of points.
setIMEMode(int value)Sets the default run-time mode of the Input Method Editor for the control as it receives focus.
setLinkedCell(String value)Sets the linked cell.
setListFillRange(String value)Sets the list fill range.
setLocked(boolean value)Indicates whether data in the control is locked for editing.
setMouseIcon(byte[] value)Sets a custom icon to display as the mouse pointer for the control.
setMousePointer(int value)Sets the type of icon displayed as the mouse pointer for the control.
setPicture(byte[] value)Sets the data of the picture.
setPicturePosition(int value)Sets the location of the control’s picture relative to its caption.
setShadow(boolean value)Indicates whether to show a shadow.
setSpecialEffect(int value)Sets the special effect of the control.
setTextAlign(int value)Represents how to align the text used by the control.
setTransparent(boolean value)Indicates whether the control is transparent.
setTripleState(boolean value)Indicates how the specified control will display Null values.
setValue(int value)Indicates if the control is checked or not.
setVisible(boolean value)Indicates whether this control is visible.
setWidth(double value)Sets the width of the control in unit of points.
setWordWrapped(boolean value)Indicates whether the contents of the control automatically wrap at the end of a line.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getAccelerator()

public char getAccelerator()

Gets the accelerator key for the control.

Example

         if ('' != activeXControl.getAccelerator())
         {
             activeXControl.setAccelerator('');
         }

Returns: char

getAlignment()

public int getAlignment()

Gets the position of the Caption relative to the control.

See ControlCaptionAlignmentType.

Example

         activeXControl.setAlignment(com.aspose.cells.ControlCaptionAlignmentType.LEFT);

Returns: int

getBackOleColor()

public int getBackOleColor()

Gets the ole color of the background.

Returns: int

getCaption()

public String getCaption()

Gets the descriptive text that appears on a control.

Example

         activeXControl.setCaption("ExampleButton");

Returns: java.lang.String

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getData()

public byte[] getData()

Gets the binary data of the control.

Returns: byte[]

getFont()

public Font getFont()

Represents the font of the control.

Returns: Font

getForeOleColor()

public int getForeOleColor()

Gets the ole color of the foreground.

Remarks

Not applies to Image control.

Returns: int

getGroupName()

public String getGroupName()

Gets the group’s name.

Example

         activeXControl.setGroupName("GroupName123");

Returns: java.lang.String

getHeight()

public double getHeight()

Gets the height of the control in unit of points.

Returns: double

getIMEMode()

public int getIMEMode()

Gets the default run-time mode of the Input Method Editor for the control as it receives focus.

See InputMethodEditorMode.

Returns: int

getLinkedCell()

public String getLinkedCell()

Gets the linked cell.

Returns: java.lang.String

getListFillRange()

public String getListFillRange()

Gets the list fill range.

Returns: java.lang.String

getMouseIcon()

public byte[] getMouseIcon()

Gets a custom icon to display as the mouse pointer for the control.

Returns: byte[]

getMousePointer()

public int getMousePointer()

Gets the type of icon displayed as the mouse pointer for the control.

See ControlMousePointerType.

Returns: int

getPicture()

public byte[] getPicture()

Gets the data of the picture.

Example

         //e.g byte[] data = File.ReadAllBytes("image.png");
         byte[] data = null;
         if(activeXControl.getPicture() != null)
         {
             activeXControl.setPicture(data);
         }

Returns: byte[]

getPicturePosition()

public int getPicturePosition()

Gets the location of the control’s picture relative to its caption.

See ControlPicturePositionType.

Example

         activeXControl.setPicturePosition(com.aspose.cells.ControlPicturePositionType.ABOVE_LEFT);

Returns: int

getShadow()

public boolean getShadow()

Indicates whether to show a shadow.

Returns: boolean

getSpecialEffect()

public int getSpecialEffect()

Gets the special effect of the control.

See ControlSpecialEffectType.

Example

         activeXControl.setSpecialEffect(com.aspose.cells.ControlSpecialEffectType.BUMP);

Returns: int

getTextAlign()

public int getTextAlign()

Represents how to align the text used by the control.

See TextAlignmentType.

Returns: int

getType()

public int getType()

Gets the type of the ActiveX control.

See ControlType.

Example

         if(activeXControl.getType() == com.aspose.cells.ControlType.RADIO_BUTTON)
         {
             //do something
         }

Returns: int

getValue()

public int getValue()

Indicates if the control is checked or not.

See CheckValueType.

Example

         if(activeXControl.getValue() == CheckValueType.UN_CHECKED)
         {
             activeXControl.setValue(CheckValueType.CHECKED);
         }

Returns: int

getWidth()

public double getWidth()

Gets the width of the control in unit of points.

Returns: double

getWorkbook()

public Workbook getWorkbook()

Gets the Workbook object.

Returns: Workbook

hashCode()

public native int hashCode()

Returns: int

isAutoSize()

public boolean isAutoSize()

Indicates whether the control will automatically resize to display its entire contents.

Returns: boolean

isEnabled()

public boolean isEnabled()

Indicates whether the control can receive the focus and respond to user-generated events.

Returns: boolean

isLocked()

public boolean isLocked()

Indicates whether data in the control is locked for editing.

Returns: boolean

isTransparent()

public boolean isTransparent()

Indicates whether the control is transparent.

Returns: boolean

isTripleState()

public boolean isTripleState()

Indicates how the specified control will display Null values.

Remarks

SettingDescription
TrueThe control will cycle through states for Yes, No, and Null values. The control appears dimmed (grayed) when its Value property is set to Null.
False(Default) The control will cycle through states for Yes and No values. Null values display as if they were No values.

Example

         activeXControl.setTripleState(false);

Returns: boolean

isVisible()

public boolean isVisible()

Indicates whether this control is visible.

Returns: boolean

isWordWrapped()

public boolean isWordWrapped()

Indicates whether the contents of the control automatically wrap at the end of a line.

Example

         if(activeXControl.isWordWrapped() == false)
         {
             activeXControl.setWordWrapped(true);
         }

Returns: boolean

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setAccelerator(char value)

public void setAccelerator(char value)

Sets the accelerator key for the control.

Parameters:

ParameterTypeDescription
valuechar

setAlignment(int value)

public void setAlignment(int value)

Sets the position of the Caption relative to the control.

See ControlCaptionAlignmentType.

Parameters:

ParameterTypeDescription
valueint

setAutoSize(boolean value)

public void setAutoSize(boolean value)

Indicates whether the control will automatically resize to display its entire contents.

Parameters:

ParameterTypeDescription
valueboolean

setBackOleColor(int value)

public void setBackOleColor(int value)

Sets the ole color of the background.

Parameters:

ParameterTypeDescription
valueint

setCaption(String value)

public void setCaption(String value)

Sets the descriptive text that appears on a control.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setEnabled(boolean value)

public void setEnabled(boolean value)

Indicates whether the control can receive the focus and respond to user-generated events.

Parameters:

ParameterTypeDescription
valueboolean

setForeOleColor(int value)

public void setForeOleColor(int value)

Sets the ole color of the foreground.

Remarks

Not applies to Image control.

Parameters:

ParameterTypeDescription
valueint

setGroupName(String value)

public void setGroupName(String value)

Sets the group’s name.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setHeight(double value)

public void setHeight(double value)

Sets the height of the control in unit of points.

Parameters:

ParameterTypeDescription
valuedouble

setIMEMode(int value)

public void setIMEMode(int value)

Sets the default run-time mode of the Input Method Editor for the control as it receives focus.

See InputMethodEditorMode.

Parameters:

ParameterTypeDescription
valueint

setLinkedCell(String value)

public void setLinkedCell(String value)

Sets the linked cell.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setListFillRange(String value)

public void setListFillRange(String value)

Sets the list fill range.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setLocked(boolean value)

public void setLocked(boolean value)

Indicates whether data in the control is locked for editing.

Parameters:

ParameterTypeDescription
valueboolean

setMouseIcon(byte[] value)

public void setMouseIcon(byte[] value)

Sets a custom icon to display as the mouse pointer for the control.

Parameters:

ParameterTypeDescription
valuebyte[]

setMousePointer(int value)

public void setMousePointer(int value)

Sets the type of icon displayed as the mouse pointer for the control.

See ControlMousePointerType.

Parameters:

ParameterTypeDescription
valueint

setPicture(byte[] value)

public void setPicture(byte[] value)

Sets the data of the picture.

Parameters:

ParameterTypeDescription
valuebyte[]

setPicturePosition(int value)

public void setPicturePosition(int value)

Sets the location of the control’s picture relative to its caption.

See ControlPicturePositionType.

Parameters:

ParameterTypeDescription
valueint

setShadow(boolean value)

public void setShadow(boolean value)

Indicates whether to show a shadow.

Parameters:

ParameterTypeDescription
valueboolean

setSpecialEffect(int value)

public void setSpecialEffect(int value)

Sets the special effect of the control.

See ControlSpecialEffectType.

Parameters:

ParameterTypeDescription
valueint

setTextAlign(int value)

public void setTextAlign(int value)

Represents how to align the text used by the control.

See TextAlignmentType.

Parameters:

ParameterTypeDescription
valueint

setTransparent(boolean value)

public void setTransparent(boolean value)

Indicates whether the control is transparent.

Parameters:

ParameterTypeDescription
valueboolean

setTripleState(boolean value)

public void setTripleState(boolean value)

Indicates how the specified control will display Null values.

Remarks

SettingDescription
TrueThe control will cycle through states for Yes, No, and Null values. The control appears dimmed (grayed) when its Value property is set to Null.
False(Default) The control will cycle through states for Yes and No values. Null values display as if they were No values.

Parameters:

ParameterTypeDescription
valueboolean

setValue(int value)

public void setValue(int value)

Indicates if the control is checked or not.

See CheckValueType.

Parameters:

ParameterTypeDescription
valueint

setVisible(boolean value)

public void setVisible(boolean value)

Indicates whether this control is visible.

Parameters:

ParameterTypeDescription
valueboolean

setWidth(double value)

public void setWidth(double value)

Sets the width of the control in unit of points.

Parameters:

ParameterTypeDescription
valuedouble

setWordWrapped(boolean value)

public void setWordWrapped(boolean value)

Indicates whether the contents of the control automatically wrap at the end of a line.

Parameters:

ParameterTypeDescription
valueboolean

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int