Description
When set to true the data provider will display a user interface to select/enter the pre-data required.
Property type
Read-write property
Syntax
| [Visual Basic .NET] |
|---|
Public Property AllowUI() As Boolean
|
| [C#] |
|---|
public bool AllowUI {get; set;}
|
| [Managed C++] |
|---|
public: __property bool get_AllowUI(); public: __property void set_AllowUI(
bool
);
|
| [Unmanaged C++] |
|---|
public: HRESULT get_AllowUI(
VARIANT_BOOL * pVal
);
public: HRESULT put_AllowUI(
VARIANT_BOOL pVal
);
|
| [Java] |
|---|
public bool getAllowUI();
public void setAllowUI(
bool
);
|
| [Python - STK API] |
|---|
@property
def AllowUI(self) -> bool:
@AllowUI.setter
def AllowUI(self, pVal:bool) -> None:
|
See Also