Description
Specify whether to display the region covered by the area target as a filled area.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property BoundaryFill() As Boolean
|
[C#] |
---|
public bool BoundaryFill {get; set;}
|
[Managed C++] |
---|
public: __property bool get_BoundaryFill(); public: __property void set_BoundaryFill(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_BoundaryFill(
VARIANT_BOOL * pBoundaryFill
);
public: HRESULT put_BoundaryFill(
VARIANT_BOOL pBoundaryFill
);
|
[Java] |
---|
public bool getBoundaryFill();
public void setBoundaryFill(
bool
);
|
[Python - STK API] |
---|
@property
def BoundaryFill(self) -> bool:
@BoundaryFill.setter
def BoundaryFill(self, pBoundaryFill:bool) -> None:
|
See Also