MSFMultiLineGeometry

Objective-C


@interface MSFMultiLineGeometry : MSFMultiGeometry

Swift

class MSFMultiLineGeometry : MSFMultiGeometry

A multiline container.

  • Constructs a MultiLineGeometry object from the vector of lines.

    Declaration

    Objective-C

    - (id)initWithGeometries:(MSFLineGeometryVector *)geometries;

    Swift

    init!(geometries: MSFLineGeometryVector!)

    Parameters

    geometries

    The vector of line geometries.

  • Undocumented

    Declaration

    Objective-C

    - (enum MSFGeometryType)getType;

    Swift

    func getType() -> MSFGeometryType
  • Returns the line geometry at the specified index. Index must be between 0 and getGeometryCount (exclusive)

    Declaration

    Objective-C

    - (MSFLineGeometry *)getGeometry:(int)index;

    Swift

    func getGeometry(_ index: Int32) -> MSFLineGeometry!

    Parameters

    index

    The index of the line geometry.

    Return Value

    The line geometry at specified index. @throws NSException If the index is out of range.

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()