New to Telerik UI for WPFStart a free 30-day trial

Base class for defining a symbology type. A symbology defines the format/algorithm used to convert the Value of the Barcode to a visual barcode representation.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public abstract class SymbologyBase : InheritanceContextPropagator

Inheritance: objectInheritanceContextPropagatorSymbologyBase

Derived Classes: DataMatrixPDF417QRCodeSwissQRCodeSymbology1DBase

Inherited Members InheritanceContextPropagator.CreateInstanceCore()InheritanceContextPropagator.FreezeCore(bool)

Constructors

C#
protected SymbologyBase()

Fields

AutoChecksumProperty

DependencyProperty

Registers the AutoChecksum dependency property.

C#
public static readonly DependencyProperty AutoChecksumProperty

ModuleProperty

DependencyProperty

Registers the Module dependency property.

C#
public static readonly DependencyProperty ModuleProperty

SizingModeProperty

DependencyProperty

Registers the SizingMode dependency property.

C#
public static readonly DependencyProperty SizingModeProperty

Properties

Gets or sets a value indicating whether the checksum will be automatically added to the end of the text.

C#
public bool AutoChecksum { get; set; }

Gets or sets the module of the barcode.

C#
public int Module { get; set; }

Gets or sets the sizing mode of this barcode symbology.

C#
public SizingMode SizingMode { get; set; }

Methods

Occurs when a property of the symbology model changes.

C#
protected virtual void OnSymbologyModelPropertyChanged(string propertyName)
Parameters:propertyNamestring

Occurs when a property of the symbology changes.

C#
protected virtual void OnSymbologyPropertyChanged()