All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aspose.cells.ActiveXControl.html Maven / Gradle / Ivy

There is a newer version: 23.1
Show newest version





ActiveXControl




com.aspose.cells
Class ActiveXControl

java.lang.Object
  extended by ActiveXControlBase
      extended by com.aspose.cells.ActiveXControl
Direct Known Subclasses:
CheckBoxActiveXControl, ComboBoxActiveXControl, CommandButtonActiveXControl, ImageActiveXControl, LabelActiveXControl, ListBoxActiveXControl, SpinButtonActiveXControl, TextBoxActiveXControl, ToggleButtonActiveXControl, UnknownControl

public abstract class ActiveXControl 
extends ActiveXControlBase

Represents the ActiveX control.


Property Getters/Setters Summary
intgetBackOleColor()→ inherited from ActiveXControlBase
voidsetBackOleColor(int)
           Gets and sets the ole color of the background.
byte[]getData()
           Gets and sets the binary data of the control.
FontgetFont()
           Represents the font of the control.
intgetForeOleColor()→ inherited from ActiveXControlBase
voidsetForeOleColor(int)
           Gets and sets the ole color of the foreground.
doublegetHeight()→ inherited from ActiveXControlBase
voidsetHeight(double)
           Gets and sets the height of the control in unit of points.
intgetIMEMode()
voidsetIMEMode(int)
           Gets and sets the default run-time mode of the Input Method Editor for the control as it receives focus. The value of the property is InputMethodEditorMode integer constant.
booleanisAutoSize()
voidsetAutoSize(boolean)
           Indicates whether the control will automatically resize to display its entire contents.
booleanisEnabled()
voidsetEnabled(boolean)
           Indicates whether the control can receive the focus and respond to user-generated events.
booleanisLocked()
voidsetLocked(boolean)
           Indicates whether data in the control is locked for editing.
booleanisTransparent()
voidsetTransparent(boolean)
           Indicates whether the control is transparent.
booleanisVisible()→ inherited from ActiveXControlBase
voidsetVisible(boolean)
           Indicates whether this control is visible.
java.lang.StringgetLinkedCell()→ inherited from ActiveXControlBase
voidsetLinkedCell(java.lang.String)
           Gets and sets the linked cell.
java.lang.StringgetListFillRange()→ inherited from ActiveXControlBase
voidsetListFillRange(java.lang.String)
           Gets and sets the list fill range.
byte[]getMouseIcon()→ inherited from ActiveXControlBase
voidsetMouseIcon(byte[])
           Gets and sets a custom icon to display as the mouse pointer for the control.
intgetMousePointer()→ inherited from ActiveXControlBase
voidsetMousePointer(int)
           Gets and sets the type of icon displayed as the mouse pointer for the control. The value of the property is ControlMousePointerType integer constant.
booleangetShadow()→ inherited from ActiveXControlBase
voidsetShadow(boolean)
           Indicates whether to show a shadow.
intgetTextAlign()
voidsetTextAlign(int)
           Represents how to align the text used by the control. The value of the property is TextAlignmentType integer constant.
abstract intgetType()→ inherited from ActiveXControlBase
           Gets the type of the ActiveX control. The value of the property is ControlType integer constant.
doublegetWidth()→ inherited from ActiveXControlBase
voidsetWidth(double)
           Gets and sets the width of the control in unit of points.
WorkbookgetWorkbook()→ inherited from ActiveXControlBase
           Gets the Workbook object.
 

Property Getters/Setters Detail

isEnabled/setEnabled

public boolean isEnabled() / public void setEnabled(boolean value)
Indicates whether the control can receive the focus and respond to user-generated events.

setEnabled

public void setEnabled(boolean value)
Indicates whether the control can receive the focus and respond to user-generated events.

isLocked/setLocked

public boolean isLocked() / public void setLocked(boolean value)
Indicates whether data in the control is locked for editing.

setLocked

public void setLocked(boolean value)
Indicates whether data in the control is locked for editing.

isTransparent/setTransparent

public boolean isTransparent() / public void setTransparent(boolean value)
Indicates whether the control is transparent.

setTransparent

public void setTransparent(boolean value)
Indicates whether the control is transparent.

isAutoSize/setAutoSize

public boolean isAutoSize() / public void setAutoSize(boolean value)
Indicates whether the control will automatically resize to display its entire contents.

setAutoSize

public void setAutoSize(boolean value)
Indicates whether the control will automatically resize to display its entire contents.

getIMEMode/setIMEMode

public int getIMEMode() / public void setIMEMode(int value)
Gets and sets the default run-time mode of the Input Method Editor for the control as it receives focus. The value of the property is InputMethodEditorMode integer constant.

setIMEMode

public void setIMEMode(int value)
Gets and sets the default run-time mode of the Input Method Editor for the control as it receives focus. The value of the property is InputMethodEditorMode integer constant.

getFont

public Font getFont()
Represents the font of the control.

getTextAlign/setTextAlign

public int getTextAlign() / public void setTextAlign(int value)
Represents how to align the text used by the control. The value of the property is TextAlignmentType integer constant.

setTextAlign

public void setTextAlign(int value)
Represents how to align the text used by the control. The value of the property is TextAlignmentType integer constant.

getData

public byte[] getData()
Gets and sets the binary data of the control.

getWorkbook

→ inherited from ActiveXControlBase
public Workbook getWorkbook()
Gets the Workbook object.

getType

→ inherited from ActiveXControlBase
public abstract int getType()
Gets the type of the ActiveX control. The value of the property is ControlType integer constant.

getWidth/setWidth

→ inherited from ActiveXControlBase
public double getWidth() / public void setWidth(double value)
Gets and sets the width of the control in unit of points.

setWidth

→ inherited from ActiveXControlBase
public void setWidth(double value)
Gets and sets the width of the control in unit of points.

getHeight/setHeight

→ inherited from ActiveXControlBase
public double getHeight() / public void setHeight(double value)
Gets and sets the height of the control in unit of points.

setHeight

→ inherited from ActiveXControlBase
public void setHeight(double value)
Gets and sets the height of the control in unit of points.

getMouseIcon/setMouseIcon

→ inherited from ActiveXControlBase
public byte[] getMouseIcon() / public void setMouseIcon(byte[] value)
Gets and sets a custom icon to display as the mouse pointer for the control.

setMouseIcon

→ inherited from ActiveXControlBase
public void setMouseIcon(byte[] value)
Gets and sets a custom icon to display as the mouse pointer for the control.

getMousePointer/setMousePointer

→ inherited from ActiveXControlBase
public int getMousePointer() / public void setMousePointer(int value)
Gets and sets the type of icon displayed as the mouse pointer for the control. The value of the property is ControlMousePointerType integer constant.

setMousePointer

→ inherited from ActiveXControlBase
public void setMousePointer(int value)
Gets and sets the type of icon displayed as the mouse pointer for the control. The value of the property is ControlMousePointerType integer constant.

getForeOleColor/setForeOleColor

→ inherited from ActiveXControlBase
public int getForeOleColor() / public void setForeOleColor(int value)
Gets and sets the ole color of the foreground. Not applies to Image control.

setForeOleColor

→ inherited from ActiveXControlBase
public void setForeOleColor(int value)
Gets and sets the ole color of the foreground. Not applies to Image control.

getBackOleColor/setBackOleColor

→ inherited from ActiveXControlBase
public int getBackOleColor() / public void setBackOleColor(int value)
Gets and sets the ole color of the background.

setBackOleColor

→ inherited from ActiveXControlBase
public void setBackOleColor(int value)
Gets and sets the ole color of the background.

isVisible/setVisible

→ inherited from ActiveXControlBase
public boolean isVisible() / public void setVisible(boolean value)
Indicates whether this control is visible.

setVisible

→ inherited from ActiveXControlBase
public void setVisible(boolean value)
Indicates whether this control is visible.

getShadow/setShadow

→ inherited from ActiveXControlBase
public boolean getShadow() / public void setShadow(boolean value)
Indicates whether to show a shadow.

setShadow

→ inherited from ActiveXControlBase
public void setShadow(boolean value)
Indicates whether to show a shadow.

getLinkedCell/setLinkedCell

→ inherited from ActiveXControlBase
public java.lang.String getLinkedCell() / public void setLinkedCell(java.lang.String value)
Gets and sets the linked cell.

setLinkedCell

→ inherited from ActiveXControlBase
public void setLinkedCell(java.lang.String value)
Gets and sets the linked cell.

getListFillRange/setListFillRange

→ inherited from ActiveXControlBase
public java.lang.String getListFillRange() / public void setListFillRange(java.lang.String value)
Gets and sets the list fill range.

setListFillRange

→ inherited from ActiveXControlBase
public void setListFillRange(java.lang.String value)
Gets and sets the list fill range.

See Also:
          Aspose.Cells Documentation - the home page for the Aspose.Cells Product Documentation.
          Aspose.Cells Support Forum - our preferred method of support.





© 2015 - 2024 Weber Informatics LLC | Privacy Policy