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
geometriesThe vector of line geometries.
-
Undocumented
-
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
indexThe 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()