iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x

SCIShortValues

@interface SCIShortValues : SCIDisposableBase <ISCIValues>

Defines a short values collection.

  • Maximum capacity of underlying array.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger capacity;

    Swift

    var capacity: Int { get }
  • Creates a new SCIShortValues instance.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithCapacity:(NSInteger)capacity;

    Swift

    init(capacity: Int)

    Parameters

    capacity

    The initial capacity.

  • Creates a new SCIShortValues instance and initializes it with specified array.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithItems:(nonnull const short *)items
                                    count:(NSInteger)count;

    Parameters

    items

    The array with items.

    count

    The count of passed in items.

  • Gets the internal items array.

    Declaration

    Objective-C

    @property (nonatomic, readonly, getter=getItemsArray) NS_REFINED_FOR_SWIFT short *itemsArray;

    Return Value

    The items array.

  • Adds new value.

    Declaration

    Objective-C

    - (void)add:(short)value;

    Swift

    func add(_ value: Int16)

    Parameters

    value

    The value to add.

  • Adds new value at specified location.

    Declaration

    Objective-C

    - (void)insert:(short)value at:(NSInteger)index;

    Swift

    func insert(_ value: Int16, at index: Int)

    Parameters

    index

    The location to add value at.

    value

    The value to add.

  • Adds multiple values from array.

    Declaration

    Objective-C

    - (void)addValues:(nonnull const short *)values count:(NSInteger)count;

    Swift

    func addValues(_ values: UnsafePointer<Int16>, count: Int)

    Parameters

    values

    The values to add.

    count

    The amount of values to add.

  • Adds multiple values from array region.

    Declaration

    Objective-C

    - (void)addValues:(nonnull const short *)values
           startIndex:(NSInteger)startIndex
                count:(NSInteger)count;

    Swift

    func addValues(_ values: UnsafePointer<Int16>, startIndex: Int, count: Int)

    Parameters

    values

    The values array to add.

    startIndex

    The index of first value to add.

    count

    The amount of values to add.

  • Sets the value at specified location.

    Declaration

    Objective-C

    - (void)set:(short)value at:(NSInteger)index;

    Swift

    func set(_ value: Int16, at index: Int)

    Parameters

    value

    The value to set.

    index

    The index to set value at.

  • Gets the value at specified location.

    Declaration

    Objective-C

    - (short)getValueAt:(NSInteger)index;

    Swift

    func getValueAt(_ index: Int) -> Int16

    Parameters

    index

    The index of value to get.

    Return Value

    The value.

  • Removes value at specified location.

    Declaration

    Objective-C

    - (void)removeAt:(NSInteger)index;

    Swift

    func remove(at index: Int)

    Parameters

    index

    The index to remove value at.