Description
Gets or sets a value indicating whether or not the overlay will be clipped by the bounds of its parent. If this property is , part of this overlay may be visible outside of its parent's bounds.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property ClipToParent() As Boolean
|
| [C#] |
|---|
public bool ClipToParent {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_ClipToParent(); public: __property void set_ClipToParent(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_ClipToParent(
VARIANT_BOOL * pRetVal
);
public: HRESULT put_ClipToParent(
VARIANT_BOOL ClipToParent
);
|
| [Java] |
|---|
public bool getClipToParent();
public void setClipToParent(
bool
);
|
| [Python - STK API] |
|---|
@property
def ClipToParent(self) -> bool:
@ClipToParent.setter
def ClipToParent(self, ClipToParent:bool) -> None:
|
See Also