DecodeType.TryParse
Contents
[
Hide
]
TryParse(string, out SingleDecodeType)
Converts the string representation of a SingleDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.
public static bool TryParse(string parsingType, out SingleDecodeType result)
Parameter | Type | Description |
---|---|---|
parsingType | String | A string in the format as “Index:-1; Name:None” to convert. |
result | SingleDecodeType& | An actual SingleDecodeType returns, when conversion has completed successfully; |
Return Value
true if s was converted successfully; otherwise, false.
See Also
- class SingleDecodeType
- class DecodeType
- namespace Aspose.BarCode.BarCodeRecognition
- assembly Aspose.BarCode
TryParse(string, out MultyDecodeType)
Converts the string representation of a MultyDecodeType to its instance. A return value indicates whether the conversion succeeded or failed.
public static bool TryParse(string parsingType, out MultyDecodeType result)
Parameter | Type | Description |
---|---|---|
parsingType | String | A string in the format as either “AllSupportedTypes” or “EAN8,EAN13,CodaBar” to convert. |
result | MultyDecodeType& | An actual MultyDecodeType is returned, when conversion has completed successfully; |
Return Value
true if s was converted successfully; otherwise, false.
See Also
- class MultyDecodeType
- class DecodeType
- namespace Aspose.BarCode.BarCodeRecognition
- assembly Aspose.BarCode