home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Resources / Developers / PSPad 4.5.1 / pspad451inst_en.exe / {app} / Context / Visual Basic .NET.DEF < prev    next >
Encoding:
Text File  |  2006-02-23  |  1.2 KB  |  62 lines

  1. ; PSPad clip definition file for Visual Basic .NET
  2. ; author:  Willem Bogaerts
  3. ; last revision 23. Feb 2006
  4. ;
  5. [Boolean | Boolean data type]
  6. Boolean|
  7. [ByRef | ByRef]
  8. ByRef º As |
  9. [ByVal | ByVal]
  10. ByVal º As |
  11. [Class | Class]
  12. Class º()
  13.     |
  14. End Class
  15. [CType | General conversion]
  16. CType(º, |)
  17. [Dim | Dim]
  18. Dim º As |
  19. [Friend | Only visible within package]
  20. Friend º|
  21. [Function | Function]
  22. Function º()
  23.     |
  24. End Function
  25. [Inherits | Inherits]
  26. Inherits º|
  27. [Integer | Integer data type]
  28. Integer|
  29. [Long | Long data type]
  30. Long|
  31. [Me | Reference to the current object]
  32. Me.º|
  33. [Namespace | Namespace]
  34. Namespace º()
  35.     |
  36. End Namespace
  37. [Private | Only visible within class/instance]
  38. Private º|
  39. [Protected | Only visible within class/instance and subclasses]
  40. Protected º|
  41. [Protected Friend | Only visible within package and subclasses]
  42. Protected Friend º|
  43. [Public | Visible everywhere]
  44. Public º|
  45. [ReadOnly Property | ReadOnly Property]
  46. ReadOnly Property º() As |
  47.     Get
  48.         
  49.         Return 
  50.     End Get
  51. End Property
  52. [Return | Return]
  53. Return º|
  54. [String | String data type]
  55. String|
  56. [Sub | Sub]
  57. Sub º()
  58.     |
  59. End Sub
  60. [Throw exception | Throw exception]
  61. Throw New º(|)
  62. ;