Max Property (FunctionSeries<T>)
In This Topic
Gets or sets the max value for the function calculation.
Syntax
'Declaration
<System.ComponentModel.DefaultValueAttribute(1)>
Public Property Max As System.Nullable(Of Double)
'Usage
Dim instance As FunctionSeries(Of T)
Dim value As System.Nullable(Of Double)
instance.Max = value
value = instance.Max
[System.ComponentModel.DefaultValue(1)]
public System.Nullable<double> Max {get; set;}
public read-write property Max: System.Nullable;
System.ComponentModel.DefaultValueAttribute(1)
public function get,set Max : System.Nullable
[System.ComponentModel.DefaultValue(1)]
public: __property System.Nullable<double> get_Max();
public: __property void set_Max(
System.Nullable<double> value
);
[System.ComponentModel.DefaultValue(1)]
public:
property System.Nullable<double> Max {
System.Nullable<double> get();
void set ( System.Nullable<double> value);
}
See Also