MSFBalloonPopupStyle

Objective-C


@interface MSFBalloonPopupStyle : MSFPopupStyle

Swift

class MSFBalloonPopupStyle : MSFPopupStyle

A style for balloon popups. Contains attributes for configuring how the balloon popup is drawn on the screen.

  • Returns the background color of the popup.

    Declaration

    Objective-C

    - (MSFColor *)getBackgroundColor;

    Swift

    func getBackgroundColor() -> MSFColor!

    Return Value

    The background color of the popup.

  • Returns the corner radius of the popup.

    Declaration

    Objective-C

    - (int)getCornerRadius;

    Swift

    func getCornerRadius() -> Int32

    Return Value

    The corner radius of the popup.

  • Returns the background color of the left part of the popup.

    Declaration

    Objective-C

    - (MSFColor *)getLeftColor;

    Swift

    func getLeftColor() -> MSFColor!

    Return Value

    The background color of the left part of the popup.

  • Returns the image of the left part of the popup.

    Declaration

    Objective-C

    - (MSFBitmap *)getLeftImage;

    Swift

    func getLeftImage() -> MSFBitmap!

    Return Value

    The image of the left part of the popup.

  • Returns the margins of the left part of the popup.

    Declaration

    Objective-C

    - (MSFBalloonPopupMargins *)getLeftMargins;

    Swift

    func getLeftMargins() -> MSFBalloonPopupMargins!

    Return Value

    The margins of the left part of the popup.

  • Returns the background color of the right part of the popup.

    Declaration

    Objective-C

    - (MSFColor *)getRightColor;

    Swift

    func getRightColor() -> MSFColor!

    Return Value

    The background color of the right part of the popup.

  • Returns the image of the right part of the popup.

    Declaration

    Objective-C

    - (MSFBitmap *)getRightImage;

    Swift

    func getRightImage() -> MSFBitmap!

    Return Value

    The image of the right part of the popup.

  • Returns the margins of the right part of the popup.

    Declaration

    Objective-C

    - (MSFBalloonPopupMargins *)getRightMargins;

    Swift

    func getRightMargins() -> MSFBalloonPopupMargins!

    Return Value

    The margins of the right part of the popup.

  • Returns the color of the title.

    Declaration

    Objective-C

    - (MSFColor *)getTitleColor;

    Swift

    func getTitleColor() -> MSFColor!

    Return Value

    The color of the title.

  • Returns the name of the title font.

    Declaration

    Objective-C

    - (NSString *)getTitleFontName;

    Swift

    func getTitleFontName() -> String!

    Return Value

    The name of the title font.

  • Returns the title field variable to use.

    Declaration

    Objective-C

    - (NSString *)getTitleField;

    Swift

    func getTitleField() -> String!

    Return Value

    The title field variable.

  • Returns the size of the title font.

    Declaration

    Objective-C

    - (int)getTitleFontSize;

    Swift

    func getTitleFontSize() -> Int32

    Return Value

    The size of the title font.

  • Returns the margins of the title.

    Declaration

    Objective-C

    - (MSFBalloonPopupMargins *)getTitleMargins;

    Swift

    func getTitleMargins() -> MSFBalloonPopupMargins!

    Return Value

    The margins of the title.

  • Returns the state of the title wrap parameter.

    Declaration

    Objective-C

    - (BOOL)isTitleWrap;

    Swift

    func isTitleWrap() -> Bool

    Return Value

    True if long titles are wrapped, false if it is truncated.

  • Returns the color of the description.

    Declaration

    Objective-C

    - (MSFColor *)getDescriptionColor;

    Swift

    func getDescriptionColor() -> MSFColor!

    Return Value

    The color of the description.

  • Returns the name of the description font.

    Declaration

    Objective-C

    - (NSString *)getDescriptionFontName;

    Swift

    func getDescriptionFontName() -> String!

    Return Value

    The name of the description font.

  • Returns the description field variable to use.

    Declaration

    Objective-C

    - (NSString *)getDescriptionField;

    Swift

    func getDescriptionField() -> String!

    Return Value

    The description field variable.

  • Returns the size of the description font.

    Declaration

    Objective-C

    - (int)getDescriptionFontSize;

    Swift

    func getDescriptionFontSize() -> Int32

    Return Value

    The size of the description font.

  • Returns the margins of the description.

    Declaration

    Objective-C

    - (MSFBalloonPopupMargins *)getDescriptionMargins;

    Swift

    func getDescriptionMargins() -> MSFBalloonPopupMargins!

    Return Value

    The margins of the description.

  • Returns the state of the description wrap parameter.

    Declaration

    Objective-C

    - (BOOL)isDescriptionWrap;

    Swift

    func isDescriptionWrap() -> Bool

    Return Value

    True if long descriptions are wrapped, false if it is truncated.

  • Returns the margins for the buttons of the popup.

    Declaration

    Objective-C

    - (MSFBalloonPopupMargins *)getButtonMargins;

    Swift

    func getButtonMargins() -> MSFBalloonPopupMargins!

    Return Value

    The margins for the buttons of the popup.

  • Returns the color of the stroke surrounding the popup.

    Declaration

    Objective-C

    - (MSFColor *)getStrokeColor;

    Swift

    func getStrokeColor() -> MSFColor!

    Return Value

    The color of the stroke surrounding the popup.

  • Returns the width of the stroke surrounding the popup.

    Declaration

    Objective-C

    - (int)getStrokeWidth;

    Swift

    func getStrokeWidth() -> Int32

    Return Value

    The width of the stroke surrounding the popup in dp.

  • Returns the width of the triangle at the bottom of the popup.

    Declaration

    Objective-C

    - (int)getTriangleWidth;

    Swift

    func getTriangleWidth() -> Int32

    Return Value

    The width of the triangle at the bottom of the popup in dp.

  • Returns the height of the triangle at the bottom of the popup.

    Declaration

    Objective-C

    - (int)getTriangleHeight;

    Swift

    func getTriangleHeight() -> Int32

    Return Value

    The height of the triangle at the bottom of the popup in dp.

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()