Description
Gets or sets the overlay's border color. By default, the border color is White. However, also by default, the overlay has a
Border Size of 0.0 so the border is not displayed.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property BorderColor() As System.Drawing.Color
|
[C#] |
---|
public System.Drawing.Color BorderColor {get; set;}
|
[Managed C++] |
---|
public: __property uint get_BorderColor(); public: __property void set_BorderColor(
uint
);
|
[Unmanaged C++] |
---|
public: HRESULT get_BorderColor(
uint * pRetVal
);
public: HRESULT put_BorderColor(
uint BorderColor
);
|
[Java] |
---|
public long getBorderColor();
public void setBorderColor(
long
);
|
[Python - STK API ] |
---|
@property
def BorderColor(self) -> agi.stk12.utilities.colors.Color:
@BorderColor.setter
def BorderColor(self, BorderColor:agi.stk12.utilities.colors.Color) -> None:
|
See Also