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


public interface IRemotePresentationTableColumn

This class represents a column in a presentation table.

Creation and access


Method Summary
 IRemoteSymphonyApplication getApplication()
          This property represents the Lotus Symphony application.
 int getWidth()
          This property sets or gets the width of the column.
 void setWidth(int width)
          This property sets or gets the width of the column.
 

Method Detail

getApplication

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

Returns:
application
Throws:
RemoteEclipseAPIException

getWidth

int getWidth()
             throws RemoteEclipseAPIException
This property sets or gets the width of the column.

Usage

When setting the width for a table column in 1/100th mm, the value of the width is converted to an internal value in twips (1 inch = 1440 twips). When getting the width of a table column, 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 width maybe different (a little larger or smaller) from the value that you set the width 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:
width
Throws:
RemoteEclipseAPIException

setWidth

void setWidth(int width)
              throws RemoteEclipseAPIException
This property sets or gets the width of the column.

Usage

When setting the width for a table column in 1/100th mm, the value of the width is converted to an internal value in twips (1 inch = 1440 twips). When getting the width of a table column, 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 width maybe different (a little larger or smaller) from the value that you set the width 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:
width -
Throws:
RemoteEclipseAPIException