Skip to main content

PostNetSymbology Class

Generates a PostNet bar code. PostNet was developed by the United States Postal Service (USPS) for faster mail sorting and routing. Unlike most other bar codes where data is encoded in the width of the bars and spaces, PostNet encodes data in the height of the bars. PostNet bars have the same width but different heights.

Namespace: DevExpress.WinUI.Controls

Assembly: DevExpress.WinUI.BarCode.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public class PostNetSymbology :
    SymbologyBase<PostNetGenerator>

Remarks

<Window ...
    xmlns:dxc="using:DevExpress.WinUI.Controls">
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
        <dxc:BarCodeControl Text="10199201" >
            <dxc:BarCodeControl.Symbology>
                <dxc:PostNetSymbology />
            </dxc:BarCodeControl.Symbology>
        </dxc:BarCodeControl>
    </StackPanel>
</Window>

BarCode - PostNet Symbology

Inheritance

Object
DependencyObject
UIElement
FrameworkElement
SymbologyBase
SymbologyBase<DevExpress.WinUI.Controls.Internal.PostNetGenerator>
PostNetSymbology
See Also