Description
Beginning pass number. Dimensionless.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property FirstPass() As Integer
|
[C#] |
---|
public int FirstPass {get; set;}
|
[Managed C++] |
---|
public: __property int get_FirstPass(); public: __property void set_FirstPass(
int
);
|
[Unmanaged C++] |
---|
public: HRESULT get_FirstPass(
long * pVal
);
public: HRESULT put_FirstPass(
long FirstPass
);
|
[Java] |
---|
public int getFirstPass();
public void setFirstPass(
int
);
|
[Python - STK API] |
---|
@property
def FirstPass(self) -> int:
@FirstPass.setter
def FirstPass(self, FirstPass:int) -> None:
|
See Also