Package com.hp.lft.sdk.wpf
Interface TableCell
public interface TableCell
A single cell in a WPF table.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the column header name of the cell.int
Returns the height of the cell in pixels.getValue()
Returns the content of the cell.int
getWidth()
Returns the width of the cell in pixels.int
getX()
Returns the X-coordinate in pixels of the cell relative to the table.int
getY()
Returns the Y-coordinate in pixels of the cell relative to the table.void
Sets the cell to a new value.
-
Method Details
-
getX
Returns the X-coordinate in pixels of the cell relative to the table.- Returns:
- the X-coordinate in pixels
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getY
Returns the Y-coordinate in pixels of the cell relative to the table.- Returns:
- the Y-coordinate in pixels
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getHeight
Returns the height of the cell in pixels.- Returns:
- the height
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getWidth
Returns the width of the cell in pixels.- Returns:
- the width
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getValue
Returns the content of the cell.- Returns:
- the content
- Throws:
GeneralLeanFtException
- if error occurs during execution
-
getColumnName
Returns the column header name of the cell.- Returns:
- the column header name
- 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
-