Package com.hp.lft.sdk.winforms
Interface TableCell
- All Known Subinterfaces:
C1TableCell
public interface TableCell
A single cell in a .NET Windows Forms table.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the column header name of this cell.int
Returns the height of this cell.getValue()
Returns the content of this cell.int
getWidth()
Returns the width of this cell.int
getX()
Returns the X-coordinate in pixels of this cell relative to the table.int
getY()
Returns the Y-coordinate in pixels of this cell relative to the table.void
Sets the cell to a new value.
-
Method Details
-
getX
Returns the X-coordinate in pixels of this cell relative to the table.- Returns:
- the X-coordinate in pixels of this cell relative to the table.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getY
Returns the Y-coordinate in pixels of this cell relative to the table.- Returns:
- the Y-coordinate in pixels of this cell relative to the table.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getHeight
Returns the height of this cell.- Returns:
- the height of this cell.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getWidth
Returns the width of this cell.- Returns:
- the width of this cell.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getValue
Returns the content of this cell.- Returns:
- the content of this cell.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getColumnName
Returns the column header name of this cell.- Returns:
- the column header name of this cell.
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
setValue
Sets the cell to a new value.- Parameters:
value
- the new value- Throws:
GeneralLeanFtException
- if error occurs during execution
-