Description
True if it is a read-only property.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property ReadOnlyProperty() As Boolean
|
[C#] |
---|
public bool ReadOnlyProperty {get; set;}
|
[Managed C++] |
---|
public: __property bool get_ReadOnlyProperty(); public: __property void set_ReadOnlyProperty(
bool
);
|
[Unmanaged C++] |
---|
public: HRESULT get_ReadOnlyProperty(
VARIANT_BOOL * pVal
);
public: HRESULT put_ReadOnlyProperty(
VARIANT_BOOL InVal
);
|
[Java] |
---|
public bool getReadOnlyProperty();
public void setReadOnlyProperty(
bool
);
|
[Python - STK API] |
---|
@property
def ReadOnlyProperty(self) -> bool:
@ReadOnlyProperty.setter
def ReadOnlyProperty(self, InVal:bool) -> None:
|
See Also