Class Method

allBezierShapes

Get information about all the provided bezier shapes.


Declaration

+(NSArray *)allBezierShapes;

Return Value

An array of dictionaries that contain information about the provided bezier shapes. For instance, following is an example that may be returned:

@[
	@{
		HSWidgetBezierShapeEnumKey : @(HSWidgetBezierShapeRoundedRect),
		HSWidgetBezierShapeDisplayNameKey : @"Rounded Rectangle (Default)"
	},
	@{
		HSWidgetBezierShapeEnumKey : @(HSWidgetBezierShapeRect),
		HSWidgetBezierShapeDisplayNameKey : @"Rectangle"
	},
	...
]

Topics


Accessing Values

Related Links


Bezier Shapes