SymbologyEncodeType Class

Symbology encode type. See EncodeTypes to get instance.
Inheritance Hierarchy

Namespace:  Aspose.BarCode.Generation
Assembly:  Aspose.BarCode (in Aspose.BarCode.dll) Version: 20.11.0
Syntax
public class SymbologyEncodeType : BaseEncodeType

The SymbologyEncodeType type exposes the following members.

Properties
  NameDescription
Public propertyClassification
Gets a classification of this symbology.
(Inherited from BaseEncodeType.)
Public propertyTypeIndex
Gets an index of encode type
(Inherited from BaseEncodeType.)
Public propertyTypeName
Gets a name of encode type
(Inherited from BaseEncodeType.)
Methods
  NameDescription
Public methodEquals(Object)
Returns a value indicating whether this instance is equal to a specified BaseEncodeType value.
(Inherited from BaseEncodeType.)
Public methodEquals(BaseEncodeType)
Returns a value indicating whether this instance is equal to a specified BaseEncodeType value.
(Inherited from BaseEncodeType.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from BaseEncodeType.)
Public methodGetString
Converts the instance of BaseEncodeType to its equivalent string representation. The string format is: "Index:0; Name:Codabar".
(Inherited from BaseEncodeType.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString
Returns the name of the given BaseEncodeType as a string.
(Inherited from BaseEncodeType.)
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