| Visual Basic (Declaration) | |
|---|---|
<DataMemberAttribute(Name="Direction", IsRequired=True)> Public Property Direction As BarcodeDirectionFlags | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
[DataMemberAttribute(Name="Direction", IsRequired=true)] public BarcodeDirectionFlags Direction {get; set;} | |
| C++/CLI | |
|---|---|
[DataMemberAttribute(Name="Direction", IsRequired=true)] public: property BarcodeDirectionFlags Direction { BarcodeDirectionFlags get(); void set (BarcodeDirectionFlags value); } | |
Return Value
Value that indicates the orientation and direction for reading barcodes. Values can be combined when appropriate, by using a bitwise OR (|).For an example, refer to Barcode1d example.
This property is valid only for the Leadtools.Services.Barcode.ServiceContracts.IBarcodeService.Read operation.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code