Aspose::BarCode::Generation::SymbologyEncodeType class

SymbologyEncodeType class

Symbology encode type. See EncodeTypes to get instance.

class SymbologyEncodeType : public Aspose::BarCode::Generation::BaseEncodeType

Methods

MethodDescription
Equals(System::SharedPtr<BaseEncodeType>) overrideReturns a value indicating whether this instance is equal to a specified BaseEncodeType value.
get_Classification()Gets a classification of this symbology.
get_TypeIndex()Gets an index of encode type.
get_TypeName()Gets a name of encode type.
GetHashCode() const overrideReturns 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”.
static GetString(System::SharedPtr<BaseEncodeType>)Converts the instance of BaseEncodeType to its equivalent string representation. The string format is: “Index:-1; Name:None”.
static Parse(System::String)Converts the string representation of the name of a BaseEncodeType to its instance.
ToString() const overrideReturns the name of the given BaseEncodeType as a string.
static TryParse(System::String, System::SharedPtr<BaseEncodeType>&)Converts the string representation of a BaseEncodeType to its instance. A return value indicates whether the conversion succeeded or failed.
static TryParse(System::String, System::SharedPtr<SymbologyEncodeType>&)Converts the string representation of a BaseEncodeType to its instance. A return value indicates whether the conversion succeeded or failed.

Remarks

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