Class SymbologyEncodeType

SymbologyEncodeType class

Symbology encode type. See EncodeTypes to get instance.

public class SymbologyEncodeType : BaseEncodeType

Properties

NameDescription
Classification { get; }Gets a classification of this symbology.
TypeIndex { get; }Gets an index of encode type
TypeName { get; }Gets a name of encode type

Methods

NameDescription
Equals(BaseEncodeType)Returns a value indicating whether this instance is equal to a specified BaseEncodeType value.
override Equals(object)Returns a value indicating whether this instance is equal to a specified BaseEncodeType value.
override GetHashCode()Returns the hash code for this instance.
GetString()Converts the instance of BaseEncodeType to its equivalent string representation. The string format is: “Index:0; Name:Codabar”.
override ToString()Returns the name of the given BaseEncodeType as a string.

Examples

This sample shows how to get instance of SymbologyEncodeType class.

[C#]
SymbologyEncodeType symbologyType = EncodeTypes.QR 
 
[VB.NET]
Dim symbologyType As SymbologyEncodeType 
symbologyType = EncodeTypes.QR

See Also