Description
Gets or sets the divisor for the result of the convolution kernel operation.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property Divisor() As Double
|
[C#] |
---|
public double Divisor {get; set;}
|
[Managed C++] |
---|
public: __property double get_Divisor(); public: __property void set_Divisor(
double
);
|
[Unmanaged C++] |
---|
public: HRESULT get_Divisor(
double * pRetVal
);
public: HRESULT put_Divisor(
double Divisor
);
|
[Java] |
---|
public double getDivisor();
public void setDivisor(
double
);
|
[Python - STK API] |
---|
@property
def Divisor(self) -> float:
@Divisor.setter
def Divisor(self, Divisor:float) -> None:
|
See Also