Class SizeRange
Represents a single size range.
Inheritance
System.Object
SizeRange
Namespace: FastReport.Map
Assembly: FastReport.dll
Syntax
public class SizeRange
Constructors
SizeRange()
Initializes a new instance of the SizeRange class.
Declaration
public SizeRange()
SizeRange(Single, Double, Double)
Initializes a new instance of the SizeRange class with a specified parameters.
Declaration
public SizeRange(float size, double startValue, double endValue)
Parameters
Type | Name | Description |
---|---|---|
System.Single | size | The size of the range. |
System.Double | startValue | The start value of the range. |
System.Double | endValue | The end value of the range. |
Properties
EndValue
Gets or sets end value of the range.
Declaration
public double EndValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Size
Gets or sets size of the range.
Declaration
public float Size { get; set; }
Property Value
Type | Description |
---|---|
System.Single |
StartValue
Gets or sets start value of the range.
Declaration
public double StartValue { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Assign(SizeRange)
Copies the contents of another SizeRange.
Declaration
public void Assign(SizeRange src)
Parameters
Type | Name | Description |
---|---|---|
SizeRange | src | The SizeRange instance to copy the contents from. |