VisioCell
VisioCell
describes attributes of a single cell, and its API allows only for lookup actions.
The setCell method should be used to perform an update.
Methodsβ
eval()β
visioCell.eval(): any;
Return a calculated result based on cell value
, units
and formula
.
Propertiesβ
There are several properties that can be accessed:
formulaβ
visioCell.formula: string | undefined;
Return a formula
that the cell uses to calculate the value
.
nameβ
visioCell.name: string;
Return a cell name (one of VisioCellName enum values).
unitsβ
visioCell.units: string | undefined;
Return a unit type of the cell. Used by Visio and visioCell.eval() to properly evaluate the value.
valueβ
visioCell.value: string | undefined;
Return a raw cell value. Raw cell value is given in the cell.units
, and returned as a string.