
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIListChar
@protocol ISCIListChar <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) char *itemsArray;
Swift
var itemsArray: UnsafeMutablePointer<CChar>! { get }
-
Gets the internal items array that this list wraps for direct access.
Declaration
Objective-C
- (char *)getItemsArray:(BOOL)normalizeIndex;
Swift
func getItemsArray(_ normalizeIndex: Bool) -> UnsafeMutablePointer<CChar>!
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.