Description
The segment to be compared against.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property OtherSegmentName() As String
|
[C#] |
---|
public string OtherSegmentName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_OtherSegmentName(); public: __property void set_OtherSegmentName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_OtherSegmentName(
BSTR * pVal
);
public: HRESULT put_OtherSegmentName(
BSTR InVal
);
|
[Java] |
---|
public String getOtherSegmentName();
public void setOtherSegmentName(
String
);
|
[Python - STK API] |
---|
@property
def OtherSegmentName(self) -> str:
@OtherSegmentName.setter
def OtherSegmentName(self, InVal:str) -> None:
|
See Also