Description
Name of the attach point.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property AttachPtName() As String
|
[C#] |
---|
public string AttachPtName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_AttachPtName(); public: __property void set_AttachPtName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_AttachPtName(
BSTR * pVal
);
public: HRESULT put_AttachPtName(
BSTR pVal
);
|
[Java] |
---|
public String getAttachPtName();
public void setAttachPtName(
String
);
|
[Python - STK API] |
---|
@property
def AttachPtName(self) -> str:
@AttachPtName.setter
def AttachPtName(self, pVal:str) -> None:
|
See Also