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


public interface IRemotePresentationTableRow

This class represents a row in a table.

Creation and access


Method Summary
 IRemoteSymphonyApplication getApplication()
          This property represents the Lotus Symphony application.
 int getHeight()
          This property returns or sets the height of the row in 1/100th mm.
 void setHeight(int height)
          This property returns or sets the height of the row in 1/100th mm.
 

Method Detail

getHeight

int getHeight()
              throws RemoteEclipseAPIException
This property returns or sets the height of the row in 1/100th mm.

Usage

When setting the height for a table row in 1/100th mm, the value of the height is converted to an internal value in twips (1 inch = 1440 twips). When getting the height of a table row, the internal value in twips is converted to a value in 1/100th mm and returned to the user. The value that you get from the height maybe different (a little larger or smaller) from the value that you set the height to. The following macro converts a value in twips to 1/100th mm:

((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L))

The following macro converts a value in 1/100th mm to twips :

((MM100) >= 0 ? (((MM100)*72L+63L)/127L) : (((MM100)*72L-63L)/127L))

Returns:
height
Throws:
RemoteEclipseAPIException

setHeight

void setHeight(int height)
               throws RemoteEclipseAPIException
This property returns or sets the height of the row in 1/100th mm.

Usage

When setting the height for a table row in 1/100th mm, the value of the height is converted to an internal value in twips (1 inch = 1440 twips). When getting the height of a table row, the internal value in twips is converted to a value in 1/100th mm and returned to the user. The value that you get from the height maybe different (a little larger or smaller) from the value that you set the height to. The following macro converts a value in twips to 1/100th mm:

((TWIP) >= 0 ? (((TWIP)*127L+36L)/72L) : (((TWIP)*127L-36L)/72L))

The following macro converts a value in 1/100th mm to twips :

((MM100) >= 0 ? (((MM100)*72L+63L)/127L) : (((MM100)*72L-63L)/127L))

Parameters:
height -
Throws:
RemoteEclipseAPIException

getApplication

IRemoteSymphonyApplication getApplication()
                                          throws RemoteEclipseAPIException
This property represents the Lotus Symphony application.

Returns:
application
Throws:
RemoteEclipseAPIException