Dim keyScanPreamble As Keys
Dim keyScanPostamble As Keys
<Category("Details")> _
<Description("Key used to start a scan - Preamble")> _
<DefaultValue(GetType(Keys), "Keys.F8")> _
Public Property ScanPreamble() As Keys
Get
Return keyScanPreamble
End Get
Set(ByVal value As Keys)
keyScanPreamble = value
End Set
End Property
<Category("Details")> _
<Description("Key used to end a scan - Postamble")> _
<DefaultValue(GetType(Keys), "Keys.F9")> _
Public Property ScanPostAmble() As Keys
Get
Return keyScanPostamble
End Get
Set(ByVal value As Keys)
keyScanPostamble = value
End Set
End Property
Visual Basic .NET (VB.NET) is an object-oriented programming language implemented on the .NET framework, but also supported on other platforms such as Mono and Silverlight. Microsoft launched VB.NET as the successor to the Visual Basic language. Though it is similar in syntax to Visual Basic pre-2002, it is not the same technology,
TRUSTED BY
ASKER