IStringChartValue

IStringChartValue interface

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.

public interface IStringChartValue : IMultipleCellChartValue

Properties

NameDescription
AsIMultipleCellChartValue { get; }Allows to get base IMultipleCellChartValue interface. Read-only IMultipleCellChartValue.
AsLiteralString { get; set; }Returns or sets the literal string if DataSourceType property is DataSourceType.StringLiterals. Read/write String.

Methods

NameDescription
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.
SetFromOneCell(IChartDataCell)Sets value from specified cell.
ToString()Returns string representation.

See Also