前の関連記事:LibreOffice5(153)プロトコルを使う状況を考える
数値フィールドコントロールのサービスとインターフェイスの一覧
├─.awt.UnoControlNumericField
│ ├─.awt.XNumericField
│ │ short getDecimalDigits()
│ │ double getFirst()
│ │ double getLast()
│ │ double getMax()
│ │ double getMin()
│ │ double getSpinSize()
│ │ double getValue()
│ │ boolean isStrictFormat()
│ │ void setDecimalDigits( [in] short nDigits)
│ │ void setFirst( [in] double Value)
│ │ void setLast( [in] double Value)
│ │ void setMax( [in] double Value)
│ │ void setMin( [in] double Value)
│ │ void setSpinSize( [in] double Value)
│ │ void setStrictFormat( [in] boolean bStrict)
│ │ void setValue( [in] double Value)
│ ├─.awt.XSpinField
│ │ void addSpinListener( [in] .awt.XSpinListener l)
│ │ void down()
│ │ void enableRepeat( [in] boolean bRepeat)
│ │ void first()
│ │ void last()
│ │ void removeSpinListener( [in] .awt.XSpinListener l)
│ │ void up()
│ └─.awt.UnoControlEdit
│ ├─.awt.XLayoutConstrains
│ │ .awt.Size calcAdjustedSize( [in] .awt.Size aNewSize)
│ │ .awt.Size getMinimumSize()
│ │ .awt.Size getPreferredSize()
│ ├─.awt.XTextComponent
│ │ void addTextListener( [in] .awt.XTextListener l)
│ │ short getMaxTextLen()
│ │ string getSelectedText()
│ │ .awt.Selection getSelection()
│ │ string getText()
│ │ void insertText( [in] .awt.Selection Sel,
│ │ [in] string Text)
│ │ boolean isEditable()
│ │ void removeTextListener( [in] .awt.XTextListener l)
│ │ void setEditable( [in] boolean bEditable)
│ │ void setMaxTextLen( [in] short nLen)
│ │ void setSelection( [in] .awt.Selection aSelection)
│ │ void setText( [in] string aText)
│ ├─.awt.XTextLayoutConstrains
│ │ void getColumnsAndLines( [out] short nCols,
│ │ [out] short nLines)
│ │ .awt.Size getMinimumSize( [in] short nCols,
│ │ [in] short nLines)
│ └─.awt.UnoControl
│ ├─.accessibility.XAccessible
│ │ .accessibility.XAccessibleContext getAccessibleContext()
│ ├─.awt.XControl
│ │ void createPeer( [in] .awt.XToolkit Toolkit,
│ │ [in] .awt.XWindowPeer Parent)
│ │ .uno.XInterface getContext()
│ │ .awt.XControlModel getModel()
│ │ .awt.XWindowPeer getPeer()
│ │ .awt.XView getView()
│ │ boolean isDesignMode()
│ │ boolean isTransparent()
│ │ void setContext( [in] .uno.XInterface Context)
│ │ void setDesignMode( [in] boolean bOn)
│ │ boolean setModel( [in] .awt.XControlModel Model)
│ ├─.awt.XView
│ │ void draw( [in] long nX,
│ │ [in] long nY)
│ │ .awt.XGraphics getGraphics()
│ │ .awt.Size getSize()
│ │ boolean setGraphics( [in] .awt.XGraphics aDevice)
│ │ void setZoom( [in] float fZoomX,
│ │ [in] float fZoomY)
│ ├─.awt.XWindow
│ │ void addFocusListener( [in] .awt.XFocusListener xListener)
│ │ void addKeyListener( [in] .awt.XKeyListener xListener)
│ │ void addMouseListener( [in] .awt.XMouseListener xListener)
│ │ void addMouseMotionListener( [in] .awt.XMouseMotionListener xListener)
│ │ void addPaintListener( [in] .awt.XPaintListener xListener)
│ │ void addWindowListener( [in] .awt.XWindowListener xListener)
│ │ .awt.Rectangle getPosSize()
│ │ void removeFocusListener( [in] .awt.XFocusListener xListener)
│ │ void removeKeyListener( [in] .awt.XKeyListener xListener)
│ │ void removeMouseListener( [in] .awt.XMouseListener xListener)
│ │ void removeMouseMotionListener( [in] .awt.XMouseMotionListener xListener)
│ │ void removePaintListener( [in] .awt.XPaintListener xListener)
│ │ void removeWindowListener( [in] .awt.XWindowListener xListener)
│ │ void setEnable( [in] boolean Enable)
│ │ void setFocus()
│ │ void setPosSize( [in] long X,
│ │ [in] long Y,
│ │ [in] long Width,
│ │ [in] long Height,
│ │ [in] short Flags)
│ │ void setVisible( [in] boolean Visible)
│ └─.lang.XComponent
│ void addEventListener( [in] .lang.XEventListener xListener)
│ void dispose()
│ void removeEventListener( [in] .lang.XEventListener aListener)
├─.awt.XStyleSettingsSupplier
│ .awt.XStyleSettings StyleSettings
├─.awt.XUnitConversion
│ .awt.Point convertPointToLogic( [in] .awt.Point Point,
│ [in] short TargetUnit
│ ) raises ( .lang.IllegalArgumentException)
│ .awt.Point convertPointToPixel( [in] .awt.Point Point,
│ [in] short SourceUnit
│ ) raises ( .lang.IllegalArgumentException)
│ .awt.Size convertSizeToLogic( [in] .awt.Size Size,
│ [in] short TargetUnit
│ ) raises ( .lang.IllegalArgumentException)
│ .awt.Size convertSizeToPixel( [in] .awt.Size Size,
│ [in] short SourceUnit
│ ) raises ( .lang.IllegalArgumentException)
├─.awt.XWindow2
│ .awt.Size getOutputSize()
│ boolean hasFocus()
│ boolean isActive()
│ boolean isEnabled()
│ boolean isVisible()
│ void setOutputSize( [in] .awt.Size Size)
├─.util.XModeChangeBroadcaster
│ void addModeChangeApproveListener( [in] .util.XModeChangeApproveListener rxListener
│ ) raises ( .lang.NoSupportException)
│ void addModeChangeListener( [in] .util.XModeChangeListener rxListener)
│ void removeModeChangeApproveListener( [in] .util.XModeChangeApproveListener rxListener
│ ) raises ( .lang.NoSupportException)
│ void removeModeChangeListener( [in] .util.XModeChangeListener rxListener)
├─stardiv.vcl.control.Edit
└─stardiv.vcl.control.NumericField
│ ├─.awt.XNumericField
│ │ short getDecimalDigits()
│ │ double getFirst()
│ │ double getLast()
│ │ double getMax()
│ │ double getMin()
│ │ double getSpinSize()
│ │ double getValue()
│ │ boolean isStrictFormat()
│ │ void setDecimalDigits( [in] short nDigits)
│ │ void setFirst( [in] double Value)
│ │ void setLast( [in] double Value)
│ │ void setMax( [in] double Value)
│ │ void setMin( [in] double Value)
│ │ void setSpinSize( [in] double Value)
│ │ void setStrictFormat( [in] boolean bStrict)
│ │ void setValue( [in] double Value)
│ ├─.awt.XSpinField
│ │ void addSpinListener( [in] .awt.XSpinListener l)
│ │ void down()
│ │ void enableRepeat( [in] boolean bRepeat)
│ │ void first()
│ │ void last()
│ │ void removeSpinListener( [in] .awt.XSpinListener l)
│ │ void up()
│ └─.awt.UnoControlEdit
│ ├─.awt.XLayoutConstrains
│ │ .awt.Size calcAdjustedSize( [in] .awt.Size aNewSize)
│ │ .awt.Size getMinimumSize()
│ │ .awt.Size getPreferredSize()
│ ├─.awt.XTextComponent
│ │ void addTextListener( [in] .awt.XTextListener l)
│ │ short getMaxTextLen()
│ │ string getSelectedText()
│ │ .awt.Selection getSelection()
│ │ string getText()
│ │ void insertText( [in] .awt.Selection Sel,
│ │ [in] string Text)
│ │ boolean isEditable()
│ │ void removeTextListener( [in] .awt.XTextListener l)
│ │ void setEditable( [in] boolean bEditable)
│ │ void setMaxTextLen( [in] short nLen)
│ │ void setSelection( [in] .awt.Selection aSelection)
│ │ void setText( [in] string aText)
│ ├─.awt.XTextLayoutConstrains
│ │ void getColumnsAndLines( [out] short nCols,
│ │ [out] short nLines)
│ │ .awt.Size getMinimumSize( [in] short nCols,
│ │ [in] short nLines)
│ └─.awt.UnoControl
│ ├─.accessibility.XAccessible
│ │ .accessibility.XAccessibleContext getAccessibleContext()
│ ├─.awt.XControl
│ │ void createPeer( [in] .awt.XToolkit Toolkit,
│ │ [in] .awt.XWindowPeer Parent)
│ │ .uno.XInterface getContext()
│ │ .awt.XControlModel getModel()
│ │ .awt.XWindowPeer getPeer()
│ │ .awt.XView getView()
│ │ boolean isDesignMode()
│ │ boolean isTransparent()
│ │ void setContext( [in] .uno.XInterface Context)
│ │ void setDesignMode( [in] boolean bOn)
│ │ boolean setModel( [in] .awt.XControlModel Model)
│ ├─.awt.XView
│ │ void draw( [in] long nX,
│ │ [in] long nY)
│ │ .awt.XGraphics getGraphics()
│ │ .awt.Size getSize()
│ │ boolean setGraphics( [in] .awt.XGraphics aDevice)
│ │ void setZoom( [in] float fZoomX,
│ │ [in] float fZoomY)
│ ├─.awt.XWindow
│ │ void addFocusListener( [in] .awt.XFocusListener xListener)
│ │ void addKeyListener( [in] .awt.XKeyListener xListener)
│ │ void addMouseListener( [in] .awt.XMouseListener xListener)
│ │ void addMouseMotionListener( [in] .awt.XMouseMotionListener xListener)
│ │ void addPaintListener( [in] .awt.XPaintListener xListener)
│ │ void addWindowListener( [in] .awt.XWindowListener xListener)
│ │ .awt.Rectangle getPosSize()
│ │ void removeFocusListener( [in] .awt.XFocusListener xListener)
│ │ void removeKeyListener( [in] .awt.XKeyListener xListener)
│ │ void removeMouseListener( [in] .awt.XMouseListener xListener)
│ │ void removeMouseMotionListener( [in] .awt.XMouseMotionListener xListener)
│ │ void removePaintListener( [in] .awt.XPaintListener xListener)
│ │ void removeWindowListener( [in] .awt.XWindowListener xListener)
│ │ void setEnable( [in] boolean Enable)
│ │ void setFocus()
│ │ void setPosSize( [in] long X,
│ │ [in] long Y,
│ │ [in] long Width,
│ │ [in] long Height,
│ │ [in] short Flags)
│ │ void setVisible( [in] boolean Visible)
│ └─.lang.XComponent
│ void addEventListener( [in] .lang.XEventListener xListener)
│ void dispose()
│ void removeEventListener( [in] .lang.XEventListener aListener)
├─.awt.XStyleSettingsSupplier
│ .awt.XStyleSettings StyleSettings
├─.awt.XUnitConversion
│ .awt.Point convertPointToLogic( [in] .awt.Point Point,
│ [in] short TargetUnit
│ ) raises ( .lang.IllegalArgumentException)
│ .awt.Point convertPointToPixel( [in] .awt.Point Point,
│ [in] short SourceUnit
│ ) raises ( .lang.IllegalArgumentException)
│ .awt.Size convertSizeToLogic( [in] .awt.Size Size,
│ [in] short TargetUnit
│ ) raises ( .lang.IllegalArgumentException)
│ .awt.Size convertSizeToPixel( [in] .awt.Size Size,
│ [in] short SourceUnit
│ ) raises ( .lang.IllegalArgumentException)
├─.awt.XWindow2
│ .awt.Size getOutputSize()
│ boolean hasFocus()
│ boolean isActive()
│ boolean isEnabled()
│ boolean isVisible()
│ void setOutputSize( [in] .awt.Size Size)
├─.util.XModeChangeBroadcaster
│ void addModeChangeApproveListener( [in] .util.XModeChangeApproveListener rxListener
│ ) raises ( .lang.NoSupportException)
│ void addModeChangeListener( [in] .util.XModeChangeListener rxListener)
│ void removeModeChangeApproveListener( [in] .util.XModeChangeApproveListener rxListener
│ ) raises ( .lang.NoSupportException)
│ void removeModeChangeListener( [in] .util.XModeChangeListener rxListener)
├─stardiv.vcl.control.Edit
└─stardiv.vcl.control.NumericField
数値フィールドコントロールモデルのサービスとインターフェイスの一覧
├─.awt.UnoControlNumericFieldModel
│ │ .util.Color BackgroundColor
│ │ short Border
│ │ long BorderColor
│ │ short DecimalAccuracy
│ │ boolean Enabled
│ │ .awt.FontDescriptor FontDescriptor
│ │ short FontEmphasisMark
│ │ short FontRelief
│ │ string HelpText
│ │ string HelpURL
│ │ boolean HideInactiveSelection
│ │ short MouseWheelBehavior
│ │ boolean Printable
│ │ boolean ReadOnly
│ │ boolean Repeat
│ │ long RepeatDelay
│ │ boolean ShowThousandsSeparator
│ │ boolean Spin
│ │ boolean StrictFormat
│ │ boolean Tabstop
│ │ .util.Color TextColor
│ │ .util.Color TextLineColor
│ │ double Value
│ │ double ValueMax
│ │ double ValueMin
│ │ double ValueStep
│ │ .style.VerticalAlignment VerticalAlign
│ │ short WritingMode
│ └─.awt.UnoControlModel
│ │ string DefaultControl
│ ├─.awt.XControlModel
│ ├─.beans.XMultiPropertySet
│ │ void addPropertiesChangeListener( [in] [string] aPropertyNames,
│ │ [in] .beans.XPropertiesChangeListener xListener)
│ │ void firePropertiesChangeEvent( [in] [string] aPropertyNames,
│ │ [in] .beans.XPropertiesChangeListener xListener)
│ │ .beans.XPropertySetInfo getPropertySetInfo()
│ │ [any] getPropertyValues( [in] [string] aPropertyNames)
│ │ void removePropertiesChangeListener( [in] .beans.XPropertiesChangeListener xListener)
│ │ void setPropertyValues( [in] [string] aPropertyNames,
│ │ [in] [any] aValues
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .lang.IllegalArgumentException,
│ │ .beans.PropertyVetoException)
│ ├─.beans.XPropertySet
│ │ void addPropertyChangeListener( [in] string aPropertyName,
│ │ [in] .beans.XPropertyChangeListener xListener
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ void addVetoableChangeListener( [in] string PropertyName,
│ │ [in] .beans.XVetoableChangeListener aListener
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ .beans.XPropertySetInfo getPropertySetInfo()
│ │ any getPropertyValue( [in] string PropertyName
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ void removePropertyChangeListener( [in] string aPropertyName,
│ │ [in] .beans.XPropertyChangeListener aListener
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ void removeVetoableChangeListener( [in] string PropertyName,
│ │ [in] .beans.XVetoableChangeListener aListener
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ void setPropertyValue( [in] string aPropertyName,
│ │ [in] any aValue
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .lang.IllegalArgumentException,
│ │ .beans.PropertyVetoException,
│ │ .beans.UnknownPropertyException)
│ ├─.io.XPersistObject
│ │ string getServiceName()
│ │ void read( [in] .io.XObjectInputStream InStream
│ │ ) raises ( .io.IOException)
│ │ void write( [in] .io.XObjectOutputStream OutStream
│ │ ) raises ( .io.IOException)
│ ├─.lang.XComponent
│ │ void addEventListener( [in] .lang.XEventListener xListener)
│ │ void dispose()
│ │ void removeEventListener( [in] .lang.XEventListener aListener)
│ ├─.util.XCloneable
│ │ .util.XCloneable createClone()
│ └─.awt.UnoControlDialogElement
│ long Height
│ string Name
│ string PositionX
│ string PositionY
│ long Step
│ short TabIndex
│ string Tag
│ long Width
├─.beans.XFastPropertySet
│ any getFastPropertyValue( [in] long nHandle
│ ) raises ( .lang.WrappedTargetException,
│ .beans.UnknownPropertyException)
│ void setFastPropertyValue( [in] long nHandle,
│ [in] any aValue
│ ) raises ( .lang.WrappedTargetException,
│ .lang.IllegalArgumentException,
│ .beans.PropertyVetoException,
│ .beans.UnknownPropertyException)
├─.beans.XPropertySetOption
│ void enableChangeListenerNotification( [in] boolean bEnable)
├─.beans.XPropertyState
│ any getPropertyDefault( [in] string aPropertyName
│ ) raises ( .lang.WrappedTargetException,
│ .beans.UnknownPropertyException)
│ .beans.PropertyState getPropertyState( [in] string PropertyName
│ ) raises ( .beans.UnknownPropertyException)
│ [.beans.PropertyState] getPropertyStates( [in] [string] aPropertyName
│ ) raises ( .beans.UnknownPropertyException)
│ void setPropertyToDefault( [in] string PropertyName
│ ) raises ( .beans.UnknownPropertyException)
├─.script.XScriptEventsSupplier
│ .container.XNameContainer getEvents()
├─stardiv.vcl.controlmodel.NumericField
└──(サービスやインターフェイスに属しないプロパティ)
short Align
short ContextWritingMode
boolean EnableVisible
boolean EnforceFormat
float FontCharWidth
short FontCharset
short FontFamily
float FontHeight
boolean FontKerning
string FontName
float FontOrientation
short FontPitch
short FontSlant
short FontStrikeout
string FontStyleName
short FontType
short FontUnderline
float FontWeight
short FontWidth
boolean FontWordLineMode
.resource.XStringResourceResolver ResourceResolver
│ │ .util.Color BackgroundColor
│ │ short Border
│ │ long BorderColor
│ │ short DecimalAccuracy
│ │ boolean Enabled
│ │ .awt.FontDescriptor FontDescriptor
│ │ short FontEmphasisMark
│ │ short FontRelief
│ │ string HelpText
│ │ string HelpURL
│ │ boolean HideInactiveSelection
│ │ short MouseWheelBehavior
│ │ boolean Printable
│ │ boolean ReadOnly
│ │ boolean Repeat
│ │ long RepeatDelay
│ │ boolean ShowThousandsSeparator
│ │ boolean Spin
│ │ boolean StrictFormat
│ │ boolean Tabstop
│ │ .util.Color TextColor
│ │ .util.Color TextLineColor
│ │ double Value
│ │ double ValueMax
│ │ double ValueMin
│ │ double ValueStep
│ │ .style.VerticalAlignment VerticalAlign
│ │ short WritingMode
│ └─.awt.UnoControlModel
│ │ string DefaultControl
│ ├─.awt.XControlModel
│ ├─.beans.XMultiPropertySet
│ │ void addPropertiesChangeListener( [in] [string] aPropertyNames,
│ │ [in] .beans.XPropertiesChangeListener xListener)
│ │ void firePropertiesChangeEvent( [in] [string] aPropertyNames,
│ │ [in] .beans.XPropertiesChangeListener xListener)
│ │ .beans.XPropertySetInfo getPropertySetInfo()
│ │ [any] getPropertyValues( [in] [string] aPropertyNames)
│ │ void removePropertiesChangeListener( [in] .beans.XPropertiesChangeListener xListener)
│ │ void setPropertyValues( [in] [string] aPropertyNames,
│ │ [in] [any] aValues
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .lang.IllegalArgumentException,
│ │ .beans.PropertyVetoException)
│ ├─.beans.XPropertySet
│ │ void addPropertyChangeListener( [in] string aPropertyName,
│ │ [in] .beans.XPropertyChangeListener xListener
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ void addVetoableChangeListener( [in] string PropertyName,
│ │ [in] .beans.XVetoableChangeListener aListener
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ .beans.XPropertySetInfo getPropertySetInfo()
│ │ any getPropertyValue( [in] string PropertyName
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ void removePropertyChangeListener( [in] string aPropertyName,
│ │ [in] .beans.XPropertyChangeListener aListener
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ void removeVetoableChangeListener( [in] string PropertyName,
│ │ [in] .beans.XVetoableChangeListener aListener
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .beans.UnknownPropertyException)
│ │ void setPropertyValue( [in] string aPropertyName,
│ │ [in] any aValue
│ │ ) raises ( .lang.WrappedTargetException,
│ │ .lang.IllegalArgumentException,
│ │ .beans.PropertyVetoException,
│ │ .beans.UnknownPropertyException)
│ ├─.io.XPersistObject
│ │ string getServiceName()
│ │ void read( [in] .io.XObjectInputStream InStream
│ │ ) raises ( .io.IOException)
│ │ void write( [in] .io.XObjectOutputStream OutStream
│ │ ) raises ( .io.IOException)
│ ├─.lang.XComponent
│ │ void addEventListener( [in] .lang.XEventListener xListener)
│ │ void dispose()
│ │ void removeEventListener( [in] .lang.XEventListener aListener)
│ ├─.util.XCloneable
│ │ .util.XCloneable createClone()
│ └─.awt.UnoControlDialogElement
│ long Height
│ string Name
│ string PositionX
│ string PositionY
│ long Step
│ short TabIndex
│ string Tag
│ long Width
├─.beans.XFastPropertySet
│ any getFastPropertyValue( [in] long nHandle
│ ) raises ( .lang.WrappedTargetException,
│ .beans.UnknownPropertyException)
│ void setFastPropertyValue( [in] long nHandle,
│ [in] any aValue
│ ) raises ( .lang.WrappedTargetException,
│ .lang.IllegalArgumentException,
│ .beans.PropertyVetoException,
│ .beans.UnknownPropertyException)
├─.beans.XPropertySetOption
│ void enableChangeListenerNotification( [in] boolean bEnable)
├─.beans.XPropertyState
│ any getPropertyDefault( [in] string aPropertyName
│ ) raises ( .lang.WrappedTargetException,
│ .beans.UnknownPropertyException)
│ .beans.PropertyState getPropertyState( [in] string PropertyName
│ ) raises ( .beans.UnknownPropertyException)
│ [.beans.PropertyState] getPropertyStates( [in] [string] aPropertyName
│ ) raises ( .beans.UnknownPropertyException)
│ void setPropertyToDefault( [in] string PropertyName
│ ) raises ( .beans.UnknownPropertyException)
├─.script.XScriptEventsSupplier
│ .container.XNameContainer getEvents()
├─stardiv.vcl.controlmodel.NumericField
└──(サービスやインターフェイスに属しないプロパティ)
short Align
short ContextWritingMode
boolean EnableVisible
boolean EnforceFormat
float FontCharWidth
short FontCharset
short FontFamily
float FontHeight
boolean FontKerning
string FontName
float FontOrientation
short FontPitch
short FontSlant
short FontStrikeout
string FontStyleName
short FontType
short FontUnderline
float FontWeight
short FontWidth
boolean FontWordLineMode
.resource.XStringResourceResolver ResourceResolver
0 件のコメント:
コメントを投稿