com.mindoo.remote.api.symphony.presentation
Interface IRemoteShadowFormat


public interface IRemoteShadowFormat

This class represents the shadow format of a shape.

Access

To get the shadow format of a shape, use the ShadowFormat property in the Shape class.


Method Summary
 int getShadowColor()
          This property returns or sets the shadow color.
 short getTransparence()
          This property returns or sets the transparence of the object.
 int getXDistance()
          This property returns or sets the X coordinate of the shadow in 1/100th mm.
 int getYDistance()
          This property returns or sets the Y coordinate of the shadow in 1/100th mm.
 void setShadowColor(int color)
          This property returns or sets the shadow color.
 void setTransparence(short shadowTransparence)
          This property returns or sets the transparence of the object.
 void setXDistance(int xDistance)
          This property returns or sets the X coordinate of the shadow in 1/100th mm.
 void setYDistance(int yDistance)
          This property returns or sets the Y coordinate of the shadow in 1/100th mm.
 

Method Detail

getShadowColor

int getShadowColor()
                   throws RemoteEclipseAPIException
This property returns or sets the shadow color. The value of this property is the decimal value of a color.

Returns:
color
Throws:
RemoteEclipseAPIException

setShadowColor

void setShadowColor(int color)
                    throws RemoteEclipseAPIException
This property returns or sets the shadow color. The value of this property is the decimal value of a color.

Parameters:
color -
Throws:
RemoteEclipseAPIException

getTransparence

short getTransparence()
                      throws RemoteEclipseAPIException
This property returns or sets the transparence of the object. The value of this property is from 0, which is fully opaque, to 100, which is fully transparent. If the value is out of bounds, this property throws an exception.

Returns:
transparence
Throws:
RemoteEclipseAPIException

setTransparence

void setTransparence(short shadowTransparence)
                     throws RemoteEclipseAPIException
This property returns or sets the transparence of the object. The value of this property is from 0, which is fully opaque, to 100, which is fully transparent. If the value is out of bounds, this property throws an exception.

Parameters:
shadowTransparence -
Throws:
RemoteEclipseAPIException

getXDistance

int getXDistance()
                 throws RemoteEclipseAPIException
This property returns or sets the X coordinate of the shadow in 1/100th mm.

Returns:
distance
Throws:
RemoteEclipseAPIException

setXDistance

void setXDistance(int xDistance)
                  throws RemoteEclipseAPIException
This property returns or sets the X coordinate of the shadow in 1/100th mm.

Parameters:
xDistance - distance
Throws:
RemoteEclipseAPIException

getYDistance

int getYDistance()
                 throws RemoteEclipseAPIException
This property returns or sets the Y coordinate of the shadow in 1/100th mm.

Returns:
distance
Throws:
RemoteEclipseAPIException

setYDistance

void setYDistance(int yDistance)
                  throws RemoteEclipseAPIException
This property returns or sets the Y coordinate of the shadow in 1/100th mm.

Parameters:
yDistance - distance
Throws:
RemoteEclipseAPIException