public interface IStringChartValue extends IMultipleCellChartValue
Represent string value which can be stored in pptx presentation document in two ways: 1) in cell/cells of workbook related to chart; 2) as literal value.
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAsLiteralString()
Returns or sets the literal string if DataSourceType property is DataSourceType.StringLiterals.
|
java.lang.String |
getCellsAddressInWorkbook()
If DataSourceType property is DataSourceType.Worksheet then this method returns address
of the cells in workbook which represent the string data.
|
void |
setAsLiteralString(java.lang.String value)
Returns or sets the literal string if DataSourceType property is DataSourceType.StringLiterals.
|
void |
setFromOneCell(IChartDataCell cell)
Sets value from specified cell.
|
java.lang.String |
toString()
Returns string representation.
|
getAsCells, setAsCells
getData, getDataSourceType, setData, setDataSourceType
java.lang.String getAsLiteralString()
Returns or sets the literal string if DataSourceType property is DataSourceType.StringLiterals.
Read/write String
.
void setAsLiteralString(java.lang.String value)
Returns or sets the literal string if DataSourceType property is DataSourceType.StringLiterals.
Read/write String
.
java.lang.String toString()
Returns string representation.
toString
in class java.lang.Object
String
object.void setFromOneCell(IChartDataCell cell)
Sets value from specified cell.
cell
- Cell.java.lang.String getCellsAddressInWorkbook()
If DataSourceType property is DataSourceType.Worksheet then this method returns address of the cells in workbook which represent the string data. Otherwise return empty string.