Class BaseDecodeType

Class BaseDecodeType

名称: Aspose.BarCode.BarCodeRecognition 合計: Aspose.BarCode.dll (25.4.0)

MultyDecodeType と SingleDecodeType のベースクラス。

public abstract class BaseDecodeType : IEquatable<basedecodetype>

Inheritance

object BaseDecodeType

Derived

MultyDecodeType , SingleDecodeType

Implements

IEquatable

相続人

object.GetType() , object.MemberwiseClone() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Examples

このサンプルでは、SingleDecodeTypeとMultyDecodeTypeを使用する方法を示しています。

BaseDecodeType decodeOne = DecodeType.Code128;
BaseDecodeType decodeTwo = new MultyDecodeType(DecodeType.Code128, DecodeType.Code39, DecodeType.Code39FullASCII);
Dim decodeOne As BaseDecodeType = DecodeType.Code128
Dim decodeTwo As BaseDecodeType = New MultyDecodeType(DecodeType.Code128, DecodeType.Code39, DecodeType.Code39FullASCII)

Methods

ContainsAny(パラメーション BaseDecodeType[])

デコードタイプのいずれかが含まれているかどうかを決定する。

public abstract bool ContainsAny(params BaseDecodeType[] types)

Parameters

types BaseDecodeType ( )

検証するタイプ

Returns

bool

価値は、いずれかのタイプが含まれている場合に真実です。

Equals(SingleDecodeType)

このインスタンスが指定された Aspose.BarCode.BarCodeRecognition.SingleDecodeType 値に等しいかどうかを示す値を返します。

public virtual bool Equals(SingleDecodeType other)

Parameters

other SingleDecodeType

A Aspose.BarCode.BarCodeRecognition.SingleDecodeType 値は、この例と比較します。

Returns

bool

真実 obj がこの例と同じ価値を持っている場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

Equals(MultyDecodeType)

このインスタンスが指定された Aspose.BarCode.BarCodeRecognition.MultyDecodeType 値に等しいかどうかを示す値を返します。

public virtual bool Equals(MultyDecodeType other)

Parameters

other MultyDecodeType

A Aspose.BarCode.BarCodeRecognition.MultyDecodeType 値は、この例と比較します。

Returns

bool

真実 obj がこの例と同じ価値を持っている場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

Equals(BaseDecodeType)

このインスタンスが指定された Aspose.BarCode.BarCodeRecognition.BaseDecodeType 値に等しいかどうかを示す値を返します。

public bool Equals(BaseDecodeType other)

Parameters

other BaseDecodeType

A Aspose.BarCode.BarCodeRecognition.BaseDecodeType 値は、この例と比較します。

Returns

bool

真実 obj がこの例と同じ価値を持っている場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

Equals(対象)

このインスタンスが指定された Aspose.BarCode.BarCodeRecognition.BaseDecodeType 値に等しいかどうかを示す値を返します。

public override bool Equals(object obj)

Parameters

obj object

システム.オブジェクト 値は、この例と比較します。

Returns

bool

真実 obj がこの例と同じ価値を持っている場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

TryParse(シングルデコードタイプ シングルデコードタイプ)

シングルデコードタイプのストレージ表現をその例に変換します。返金値は、変換が成功したか失敗したかを示します。

public static bool TryParse(string parsingType, out SingleDecodeType result)

Parameters

parsingType string

変換するには「EAN8」または「EAN13」または「CodaBar」形式の単一デコードタイプを含む列が表示されます。

result SingleDecodeType

実際の SingleDecodeType は、変換が成功したときに返されます; そうでなければ、無期限のタイプ: DecodeType.None を返します。

Returns

bool

真実 もしパルシングタイプが成功して変換された場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

TryParse(ストレッチ、MultyDecodeType)

MultyDecodeType をその例に変換します。返金値は、変換が成功したか失敗したかを示します。

public static bool TryParse(string parsingType, out MultyDecodeType result)

Parameters

parsingType string

変換するための MultyDecodeType プレゼンテーションを含む列。

result MultyDecodeType

実際の MultyDecodeType は、変換が成功して完了したときに返されます; そうでなければ、無期限のタイプを返します: 新しい MultyDecodeType(DecodeType.None)

Returns

bool

真実 もしパルシングタイプが成功して変換された場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

TryParse(トップページ > トップページ > BaseDecodeType)

BaseDecodeType の列表をその例に変換し、具体的なタイプを決定します。返金値は、変換が成功したか失敗したかを示します。

public static bool TryParse(string parsingType, out BaseDecodeType result)

Parameters

parsingType string

変換するための MultyDecodeType プレゼンテーションを含む列。

result BaseDecodeType

実際の MultyDecodeType は、変換が成功したときに返されます; そうでなければ、無期限のタイプ: DecodeType.None を返します。

Returns

bool

真実 もしパルシングタイプが成功して変換された場合、そうでなければ、 The translation of the value “false” to Japanese is “偽” (pronounced “gi”)..

 日本語