Property Getters/Setters Summary | ||
---|---|---|
function | getIndex() | |
function | setIndex(value) | |
Gets the index of the pivot item in cache field. | ||
function | isFormula() | |
function | setFormula(value) | |
Indicates whether this pivot item is a calculated formula item. | ||
function | isHidden() | |
function | setHidden(value) | |
Gets and Sets whether the pivot item is hidden. | ||
function | isHideDetail() | |
function | setHideDetail(value) | |
Gets and Sets whether the pivot item hides detail. | ||
function | isMissing() | |
Indicates whether the item is removed from the data source.
|
||
function | getName() | |
Gets the name of the pivot item.
|
||
function | getPosition() | |
function | setPosition(value) | |
Specifying the position index in all the PivotItems,not the PivotItems under the same parent node. | ||
function | getPositionInSameParentNode() | |
function | setPositionInSameParentNode(value) | |
Specifying the position index in the PivotItems under the same parent node. | ||
function | getValue() | |
Gets the value of the pivot item
|
Method Summary | ||
---|---|---|
function | getDateTimeValue() | |
Gets the date time value of the pivot item
If the value is null ,it will return DateTime.MinValue
|
||
function | getDoubleValue() | |
Gets the double value of the pivot item
If the value is null or not number ,it will return 0
|
||
function | getStringValue() | |
Gets the string value of the pivot item
If the value is null, it will return ""
|
||
function | hide(value) | |
Sets whether the pivot item is hidden.
|
||
function | move(count, isSameParent) | |
Moves the item up or down
|
function isHidden() / function setHidden(value)
function getPosition() / function setPosition(value)
function getPositionInSameParentNode() / function setPositionInSameParentNode(value)
function isHideDetail() / function setHideDetail(value)
function isFormula() / function setFormula(value)
function isMissing()
function getValue()
function getName()
function getIndex() / function setIndex(value)
function hide(value)
function move(count, isSameParent)
count: Number
-
The number of moving up or down.
Move the item up if this is less than zero;
Move the item down if this is greater than zero.
isSameParent: boolean
-
Specifying whether moving operation is in the same parent node or not
function getStringValue()
function getDoubleValue()
function getDateTimeValue()