Description
The SegStartFunction - custom function to call at the beginning of each segment.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property SegStartFunctionName() As String
|
[C#] |
---|
public string SegStartFunctionName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_SegStartFunctionName(); public: __property void set_SegStartFunctionName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_SegStartFunctionName(
BSTR * pSegStartFunction
);
public: HRESULT put_SegStartFunctionName(
BSTR SegStartFunction
);
|
[Java] |
---|
public String getSegStartFunctionName();
public void setSegStartFunctionName(
String
);
|
[Python - STK API] |
---|
@property
def SegStartFunctionName(self) -> str:
@SegStartFunctionName.setter
def SegStartFunctionName(self, SegStartFunction:str) -> None:
|
See Also