Description
Object to which there is access during the scheduled period.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Target() As String
|
[C#] |
---|
public string Target {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_Target(); public: __property void set_Target(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Target(
BSTR * pVal
);
public: HRESULT put_Target(
BSTR pVal
);
|
[Java] |
---|
public String getTarget();
public void setTarget(
String
);
|
[Python - STK API] |
---|
@property
def Target(self) -> str:
@Target.setter
def Target(self, pVal:str) -> None:
|
See Also