Class ZipCodeObject
Represents a zip code object.
Inheritance
System.Object
ZipCodeObject
Assembly: FastReport.Base.dll
Syntax
public class ZipCodeObject : ReportComponentBase, IDisposable, IFRSerializable
Constructors
ZipCodeObject()
Initializes a new instance of the ZipCodeObject with the default settings.
Declaration
Properties
DataColumn
Gets or sets a data column name bound to this control.
Declaration
public string DataColumn { get; set; }
Property Value
Type |
Description |
System.String |
|
Remarks
Expression
Gets or sets an expression that contains the zip code.
Declaration
public string Expression { get; set; }
Property Value
Type |
Description |
System.String |
|
SegmentCount
Gets or sets the number of segments in zipcode.
Declaration
public int SegmentCount { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
SegmentHeight
Gets or sets the height of a single zipcode segment, in pixels.
Declaration
public float SegmentHeight { get; set; }
Property Value
Type |
Description |
System.Single |
|
SegmentWidth
Gets or sets the width of a single zipcode segment, in pixels.
Declaration
public float SegmentWidth { get; set; }
Property Value
Type |
Description |
System.Single |
|
ShowGrid
Gets or sets a value indicating whether the segment grid should be drawn.
Declaration
public bool ShowGrid { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
ShowMarkers
Gets or sets a value indicating whether the reference markers should be drawn.
Declaration
public bool ShowMarkers { get; set; }
Property Value
Type |
Description |
System.Boolean |
|
Spacing
Gets or sets the spacing between origins of segments, in pixels.
Declaration
public float Spacing { get; set; }
Property Value
Type |
Description |
System.Single |
|
Text
Gets or sets the zip code.
Declaration
public string Text { get; set; }
Property Value
Type |
Description |
System.String |
|
Methods
Assign(Base)
Declaration
public override void Assign(Base source)
Parameters
Type |
Name |
Description |
Base |
source |
|
Overrides
Draw(FRPaintEventArgs)
Declaration
public override void Draw(FRPaintEventArgs e)
Parameters
Overrides
GetData()
Declaration
public override void GetData()
Overrides
GetDataAsync(CancellationToken)
Declaration
public override async Task GetDataAsync(CancellationToken cancellationToken)
Parameters
Type |
Name |
Description |
System.Threading.CancellationToken |
cancellationToken |
|
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
Overrides
GetExpressions()
Declaration
public override string[] GetExpressions()
Returns
Type |
Description |
System.String[] |
|
Overrides
Serialize(FRWriter)
Declaration
public override void Serialize(FRWriter writer)
Parameters
Overrides
Implements