IMapBox.BorderStyle

Syntax

BorderStyle: ControlBorderStyle;

Description

The BorderStyle property determines the style of component border.

Example

Executing the example requires a form with the Button1 button and the MapBox component named MapBox1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Begin

MapBox1.BorderStyle:=ControlBorderStyle.Single;

End Sub Button1OnClick;

After executing the example the border of the MapBox1 component is displayed in 3D.

See also:

IMapBox