
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIListDouble
@protocol ISCIListDouble <ISCIList>
Defines the interface which allows to get access to primitive internal items array.
-
Gets the internal items array that this list wraps for direct access.
Declaration
Objective-C
@property (nonatomic, readonly) double *itemsArray;
Swift
var itemsArray: UnsafeMutablePointer<Double>! { get }
-
Gets the internal items array that this list wraps for direct access.
Declaration
Objective-C
- (double *)getItemsArray:(BOOL)normalizeIndex;
Swift
func getItemsArray(_ normalizeIndex: Bool) -> UnsafeMutablePointer<Double>!
Parameters
normalizeIndex
The value which indicate whether to normalize index or not.
Return Value
The internal items array that this list wraps for direct access.