Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2344 lines
131 KiB

  1. <doc>
  2. <assembly>
  3. <name>Microsoft.VisualBasic</name>
  4. <version>7.0.0.0</version>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.VisualBasic.AppWinStyle">
  8. <summary>The AppWinStyle enumeration contains constants used by the Shell function to control the style of an application window. These constants can be used anywhere in your code.
  9. </summary>
  10. </member>
  11. <member name="T:Microsoft.VisualBasic.CallType">
  12. <summary>The CallType enumeration defines constants used to identify the call type used by the CallByName function.
  13. </summary>
  14. </member>
  15. <member name="F:Microsoft.VisualBasic.CallType.Get">
  16. <summary>A property value is being retrieved.</summary>
  17. </member>
  18. <member name="F:Microsoft.VisualBasic.CallType.Method">
  19. <summary>A method is being invoked.</summary>
  20. </member>
  21. <member name="F:Microsoft.VisualBasic.CallType.Set">
  22. <summary>A property value is being determined.</summary>
  23. </member>
  24. <member name="T:Microsoft.VisualBasic.Collection">
  25. <summary>The Collection class contains procedures used to perform operations on the Collection object.
  26. </summary>
  27. </member>
  28. <member name="M:Microsoft.VisualBasic.Collection.Add(System.Object,System.String,System.Object,System.Object)">
  29. <param name="Item">An object of any type that specifies the member to add to the collection.
  30. </param>
  31. <param name="Key">A unique String expression that specifies a key string that can be used instead of a positional index to access a member of the collection.
  32. </param>
  33. <param name="Before">The member to be added is placed in the collection before the member identified by the Before argument.</param>
  34. <param name="After">The member to be added is placed in the collection after the member identified by the After argument. </param>
  35. <summary>Adds a member to a Collection object.
  36. </summary>
  37. </member>
  38. <member name="P:Microsoft.VisualBasic.Collection.Count">
  39. <summary>Returns an integer containing the number of objects in a collection. Read-only.
  40. </summary>
  41. </member>
  42. <member name="P:Microsoft.VisualBasic.Collection.Item(System.Int32)">
  43. <summary>Returns a specific member of a Collection object either by position or by key.
  44. </summary>
  45. <param name="Index">Numeric Expression that specifies the position of a member of the collection. Index must be a number from 1 to the value of the collection's Count property. </param>
  46. </member>
  47. <member name="P:Microsoft.VisualBasic.Collection.Item(System.Object)">
  48. <summary>Returns a specific member of a Collection object either by position or by key.
  49. </summary>
  50. <param name="Index">Expression that specifies the position of a member of the collection, it must correspond to the key value specified when the member referred to was added to the collection.
  51. </param>
  52. </member>
  53. <member name="M:Microsoft.VisualBasic.Collection.Remove(System.Int32)">
  54. <param name="Index">Numeric expression that specifies the position of a member of the collection. Index must be a number from 1 to the value of the collection's Count property.
  55. </param>
  56. <summary>Removes a member from a Collection object.
  57. </summary>
  58. </member>
  59. <member name="M:Microsoft.VisualBasic.Collection.Remove(System.String)">
  60. <param name="Key">Key must correspond to the Key argument specified when the member referred to was added to the collection.
  61. </param>
  62. <summary>Removes a member from a Collection object.
  63. </summary>
  64. </member>
  65. <member name="T:Microsoft.VisualBasic.CompareMethod">
  66. <summary>The CompareMethod enumeration contains constants used to determine the way strings are compared when using the Instr and StrComp functions. These constants can be used anywhere in your code.
  67. </summary>
  68. </member>
  69. <member name="T:Microsoft.VisualBasic.Constants">
  70. <summary>The Constants module contains miscellaneous constants. These constants can be used anywhere in your code.
  71. </summary>
  72. </member>
  73. <member name="F:Microsoft.VisualBasic.Constants.vbAbort">
  74. <summary> vbAbort = MsgBoxResult.Abort - Abort button was pressed.
  75. </summary>
  76. </member>
  77. <member name="F:Microsoft.VisualBasic.Constants.vbAbortRetryIgnore">
  78. <summary>
  79. vbIgnore = MsgBoxResult.Ignore - Ignore button was pressed.
  80. </summary>
  81. </member>
  82. <member name="F:Microsoft.VisualBasic.Constants.vbApplicationModal">
  83. <summary>vbApplicationModal = MsgBoxStyle.ApplicationModal - Application modal message box (default).
  84. </summary>
  85. </member>
  86. <member name="F:Microsoft.VisualBasic.Constants.VbArchive">
  87. <summary>VbArchive=FileAttribute.Archive - File has changed since last backup.
  88. </summary>
  89. </member>
  90. <member name="F:Microsoft.VisualBasic.Constants.vbBack">
  91. <summary>vbBack - Chr(8) Backspace character.
  92. </summary>
  93. </member>
  94. <member name="F:Microsoft.VisualBasic.Constants.VbBinaryCompare">
  95. <summary>VbBinaryCompare = CompareMethod.Binary - Performs a binary comparison.
  96. </summary>
  97. </member>
  98. <member name="F:Microsoft.VisualBasic.Constants.vbCancel">
  99. <summary>vbCancel = MsgBoxResult.Cancel - Cancel button was pressed.
  100. </summary>
  101. </member>
  102. <member name="F:Microsoft.VisualBasic.Constants.vbCr">
  103. <summary>vbCr - Chr(13) Carriage return character.
  104. </summary>
  105. </member>
  106. <member name="F:Microsoft.VisualBasic.Constants.vbCritical">
  107. <summary>vbCritical = MsgBoxStyle.Critical - Critical message.
  108. </summary>
  109. </member>
  110. <member name="F:Microsoft.VisualBasic.Constants.vbCrLf">
  111. <summary>vbCrLf - Chr(13) + Chr(10) Carriage return/linefeed character combination.
  112. </summary>
  113. </member>
  114. <member name="F:Microsoft.VisualBasic.Constants.VbDate">
  115. <summary>VbDate = VariantType.Date - The variant contains a Date value
  116. </summary>
  117. </member>
  118. <member name="F:Microsoft.VisualBasic.Constants.vbDefaultButton1">
  119. <summary>vbDefaultButton1 = MsgBoxStyle.DefaultButton1 - First button is default (default).
  120. </summary>
  121. </member>
  122. <member name="F:Microsoft.VisualBasic.Constants.vbDefaultButton2">
  123. <summary>vbDefaultButton2 = MsgBoxStyle.DefaultButton2 - Second button is default.
  124. </summary>
  125. </member>
  126. <member name="F:Microsoft.VisualBasic.Constants.vbDefaultButton3">
  127. <summary>vbDefaultButton3 = MsgBoxStyle.DefaultButton3 - Third button is default.
  128. </summary>
  129. </member>
  130. <member name="F:Microsoft.VisualBasic.Constants.VbDirectory">
  131. <summary>VbDirectory = FileAttribute.Directory - Directory or folder.
  132. </summary>
  133. </member>
  134. <member name="F:Microsoft.VisualBasic.Constants.vbExclamation">
  135. <summary>vbExclamation = MsgBoxStyle.Exclamation - Warning message.
  136. </summary>
  137. </member>
  138. <member name="F:Microsoft.VisualBasic.Constants.VbFalse">
  139. <summary>vbFalse = Tristate.False. Tristate value of False
  140. </summary>
  141. </member>
  142. <member name="F:Microsoft.VisualBasic.Constants.VbFirstFourDays">
  143. <summary>VbFirstFourDays = FirstWeekOfYear.FirstFourDays - The first week that has at least four days in the new year.
  144. </summary>
  145. </member>
  146. <member name="F:Microsoft.VisualBasic.Constants.VbFirstFullWeek">
  147. <summary>VbFirstFullWeek = FirstWeekOfYear.FirstFullWeek - The first full week of the year
  148. </summary>
  149. </member>
  150. <member name="F:Microsoft.VisualBasic.Constants.VbFirstJan1">
  151. <summary>VbFirstJan1 = FirstWeekOfYear.Jan1 - The week in which January 1 occurs (default)
  152. </summary>
  153. </member>
  154. <member name="F:Microsoft.VisualBasic.Constants.vbFormFeed">
  155. <summary>vbFormFeed - Chr(12).
  156. </summary>
  157. </member>
  158. <member name="F:Microsoft.VisualBasic.Constants.VbFriday">
  159. <summary>VbFriday = FirstDayOfWeek.Friday - Friday
  160. </summary>
  161. </member>
  162. <member name="F:Microsoft.VisualBasic.Constants.VbGeneralDate">
  163. <summary>VbGeneralDate = DateFormat.GeneralDate - For real numbers, displays a date and time. If the number has no fractional part, displays only a date. If the number has no integer part, displays time only.
  164. </summary>
  165. </member>
  166. <member name="F:Microsoft.VisualBasic.Constants.VbGet">
  167. <summary>VbGet = CallType.Get - A property value is being retrieved.
  168. </summary>
  169. </member>
  170. <member name="F:Microsoft.VisualBasic.Constants.VbHidden">
  171. <summary>VbHidden = FileAttribute.Hidden - Hidden.
  172. </summary>
  173. </member>
  174. <member name="F:Microsoft.VisualBasic.Constants.vbHide">
  175. <summary>vbHide = AppWinStyle.Hide - Window is hidden and focus is passed to the hidden window.
  176. </summary>
  177. </member>
  178. <member name="F:Microsoft.VisualBasic.Constants.VbHiragana">
  179. <summary>VbHiragana = VbStrConv.Hirigana - Converts Katakana characters in the string to Hiragana characters. Applies to Japanese locale only.
  180. </summary>
  181. </member>
  182. <member name="F:Microsoft.VisualBasic.Constants.vbIgnore">
  183. <summary>vbIgnore = MsgBoxResult.Ignore - Ignore button was pressed.</summary>
  184. </member>
  185. <member name="F:Microsoft.VisualBasic.Constants.vbInformation">
  186. <summary>vbInformation = MsgBoxStyle.Information - Information message.</summary>
  187. </member>
  188. <member name="F:Microsoft.VisualBasic.Constants.vbLf">
  189. <summary>vbLf - Chr(10) Linefeed character.</summary>
  190. </member>
  191. <member name="F:Microsoft.VisualBasic.Constants.VbLongDate">
  192. <summary>VbLongDate = DateFormat.LongDate - Displays a date using the long-date format specified in your computer's regional settings.</summary>
  193. </member>
  194. <member name="F:Microsoft.VisualBasic.Constants.VbLongTime">
  195. <summary>VbLongTime = DateFormat.LongTime - Displays a time using the long-time format specified in your computer's regional settings.</summary>
  196. </member>
  197. <member name="F:Microsoft.VisualBasic.Constants.VbLowerCase">
  198. <summary>VbLowerCase = VbStrConv.LowerCase - Converts the string to lowercase characters.</summary>
  199. </member>
  200. <member name="F:Microsoft.VisualBasic.Constants.vbMaximizedFocus">
  201. <summary>vbMaximizedFocus = AppWinStyle.MaximizedFocus - Window is maximized with focus.</summary>
  202. </member>
  203. <member name="F:Microsoft.VisualBasic.Constants.VbMethod">
  204. <summary>VbMethod = CallType.Method - A method is being invoked.</summary>
  205. </member>
  206. <member name="F:Microsoft.VisualBasic.Constants.vbMinimizedFocus">
  207. <summary>vbMinimizedFocus = AppWinStyle.MinimizedFocus - Window is displayed as an icon with focus.</summary>
  208. </member>
  209. <member name="F:Microsoft.VisualBasic.Constants.vbMinimizedNoFocus">
  210. <summary>vbMinimizedNoFocus = AppWinStyle.MinimizedNoFocus - Window is displayed as an icon. The currently active window remains active.</summary>
  211. </member>
  212. <member name="F:Microsoft.VisualBasic.Constants.VbMonday">
  213. <summary>VbMonday = FirstDayOfWeek.Monday - Monday</summary>
  214. </member>
  215. <member name="F:Microsoft.VisualBasic.Constants.vbMsgBoxRight">
  216. <summary>vbMsgBoxRight = MsgBoxStyle.MsgBoxRight - Right-aligned text.</summary>
  217. </member>
  218. <member name="F:Microsoft.VisualBasic.Constants.vbMsgBoxRtlReading">
  219. <summary>vbMsgBoxRtlReading = MsgBoxStyle.MsgBoxRtlReading - Right-to-left reading text (Hebrew and Arabic systems).</summary>
  220. </member>
  221. <member name="F:Microsoft.VisualBasic.Constants.vbMsgBoxSetForeground">
  222. <summary>vbMsgBoxSetForeground = MsgBoxStyle.MsgBoxSetForeground - Foreground message box window.</summary>
  223. </member>
  224. <member name="F:Microsoft.VisualBasic.Constants.VbNarrow">
  225. <summary>VbNarrow = VbStrConv.Narrow - Converts wide (double-byte) characters in the string to narrow (single-byte) characters. Applies to Asian locales.</summary>
  226. </member>
  227. <member name="F:Microsoft.VisualBasic.Constants.vbNewLine">
  228. <summary>vbNewLine = Chr(13) + Chr(10) - New line character.</summary>
  229. </member>
  230. <member name="F:Microsoft.VisualBasic.Constants.vbNo">
  231. <summary>vbNo = MsgBoxResult.No - No button was pressed.</summary>
  232. </member>
  233. <member name="F:Microsoft.VisualBasic.Constants.VbNormal">
  234. <summary>VbNormal = FileAttribute.Normal - Normal (default for Dir and SetAttr).</summary>
  235. </member>
  236. <member name="F:Microsoft.VisualBasic.Constants.vbNormalFocus">
  237. <summary>vbNormalFocus = AppWinStyle.NormalFocus - Window has focus and is restored to its original size and position.</summary>
  238. </member>
  239. <member name="F:Microsoft.VisualBasic.Constants.vbNormalNoFocus">
  240. <summary>vbNormalNoFocus = AppWinStyle.NormalNoFocus - Window is restored to its most recent size and position. The currently active window remains active.</summary>
  241. </member>
  242. <member name="F:Microsoft.VisualBasic.Constants.vbNullChar">
  243. <summary> vbNullChar = Chr(0) - Character having value 0.</summary>
  244. </member>
  245. <member name="F:Microsoft.VisualBasic.Constants.vbNullString">
  246. <summary>vbNullString - String having value 0. Not the same as a zero-length string (""); used for calling external procedures.</summary>
  247. </member>
  248. <member name="F:Microsoft.VisualBasic.Constants.vbObjectError">
  249. <summary>vbObjectError = -2147221504 - Error number. User-defined error numbers should be greater than this value. For example: Err.Raise(Number) = ObjectError + 1000</summary>
  250. </member>
  251. <member name="F:Microsoft.VisualBasic.Constants.vbOKCancel">
  252. <summary>vbCancel = MsgBoxResult.Cancel - Cancel button was pressed.</summary>
  253. </member>
  254. <member name="F:Microsoft.VisualBasic.Constants.vbOKOnly">
  255. <summary>vbOKOnly = MsgBoxResultOKOnly - OK button only (default).</summary>
  256. </member>
  257. <member name="F:Microsoft.VisualBasic.Constants.VbProperCase">
  258. <summary>VbProperCase = VbStrConv.ProperCase - Converts the first letter of every word in the string to uppercase.</summary>
  259. </member>
  260. <member name="F:Microsoft.VisualBasic.Constants.vbQuestion">
  261. <summary>vbQuestion = MsgBoxStyle.Question - Warning query.</summary>
  262. </member>
  263. <member name="F:Microsoft.VisualBasic.Constants.VbReadOnly">
  264. <summary>VbReadOnly = FileAttribute.ReadOnly - Read only.</summary>
  265. </member>
  266. <member name="F:Microsoft.VisualBasic.Constants.vbRetry">
  267. <summary>vbRetry = MsgBoxResult.Retry - Retry button was pressed.</summary>
  268. </member>
  269. <member name="F:Microsoft.VisualBasic.Constants.vbRetryCancel">
  270. <summary>vbCancel = MsgBoxResult.Cancel - Cancel button was pressed.</summary>
  271. </member>
  272. <member name="F:Microsoft.VisualBasic.Constants.VbSaturday">
  273. <summary>VbSaturday = FirstDayOfWeek.Saturday - Saturday</summary>
  274. </member>
  275. <member name="F:Microsoft.VisualBasic.Constants.VbSet">
  276. <summary>VbSet = CallType.Set - A property value is being determined.</summary>
  277. </member>
  278. <member name="F:Microsoft.VisualBasic.Constants.VbShortDate">
  279. <summary>VbShortDate = DateFormat.ShortDate - Displays a date using the short-date format specified in your computer's regional settings.</summary>
  280. </member>
  281. <member name="F:Microsoft.VisualBasic.Constants.VbShortTime">
  282. <summary>VbShortTime = DateFormat.ShortTime - Displays a time using the short-time format specified in your computer's regional settings.</summary>
  283. </member>
  284. <member name="F:Microsoft.VisualBasic.Constants.VbSunday">
  285. <summary>VbSunday = FirstDayOfWeek.Sunday - Sunday</summary>
  286. </member>
  287. <member name="F:Microsoft.VisualBasic.Constants.VbSystem">
  288. <summary>VbSystem = FileAttribute.System - System file.</summary>
  289. </member>
  290. <member name="F:Microsoft.VisualBasic.Constants.vbTab">
  291. <summary>vbTab = Chr(9) - Tab character.</summary>
  292. </member>
  293. <member name="F:Microsoft.VisualBasic.Constants.VbTextCompare">
  294. <summary>VbTextCompare = CompareMethod.TextCompare - Performs a textual comparison.</summary>
  295. </member>
  296. <member name="F:Microsoft.VisualBasic.Constants.VbThursday">
  297. <summary>VbThursday = FirstDayOfWeek.Thursday - Thursday</summary>
  298. </member>
  299. <member name="F:Microsoft.VisualBasic.Constants.VbTrue">
  300. <summary>VbTrue = Tristate.True = –1 </summary>
  301. </member>
  302. <member name="F:Microsoft.VisualBasic.Constants.VbTuesday">
  303. <summary>VbTuesday = FirstDayOfWeek.Tuesday - Tuesday</summary>
  304. </member>
  305. <member name="F:Microsoft.VisualBasic.Constants.VbUpperCase">
  306. <summary>VbUpperCase = VbStrConv.UpperCase - Converts the string to uppercase characters.</summary>
  307. </member>
  308. <member name="F:Microsoft.VisualBasic.Constants.VbUseDefault">
  309. <summary>VbUseDefault = TriState.UseDefault - Default setting</summary>
  310. </member>
  311. <member name="F:Microsoft.VisualBasic.Constants.VbUseSystem">
  312. <summary>VbUseSystem = FirstWeekOfYear.System - The day of the week specified in your system settings as the first day of the week</summary>
  313. </member>
  314. <member name="F:Microsoft.VisualBasic.Constants.VbUseSystemDayOfWeek">
  315. <summary>VbUseSystemDayOfWeek = FirstDayOfWeek.System - The first day of the week as specified in your system settings </summary>
  316. </member>
  317. <member name="F:Microsoft.VisualBasic.Constants.vbVerticalTab">
  318. <summary>vbVerticalTab = Chr(11) Not useful in Microsoft Windows.</summary>
  319. </member>
  320. <member name="F:Microsoft.VisualBasic.Constants.VbVolume">
  321. <summary>VbVolume = FileAttribute.Volume - Volume label.</summary>
  322. </member>
  323. <member name="F:Microsoft.VisualBasic.Constants.VbWednesday">
  324. <summary>VbWednesday = FirstDayOfWeek.Wednesday - Wednesday</summary>
  325. </member>
  326. <member name="F:Microsoft.VisualBasic.Constants.VbWide">
  327. <summary>VbWide = .VbStrConv.Wide - Converts narrow (single-byte) characters in the string to wide (double-byte) characters. Applies to Asian locales.</summary>
  328. </member>
  329. <member name="F:Microsoft.VisualBasic.Constants.vbYes">
  330. <summary>vbYes = MsgBoxResult.Yes - Yes button was pressed</summary>
  331. </member>
  332. <member name="F:Microsoft.VisualBasic.Constants.vbYesNo">
  333. <summary>vbNo = No - MsgBoxResult.No button was pressed.</summary>
  334. </member>
  335. <member name="F:Microsoft.VisualBasic.Constants.vbYesNoCancel">
  336. <summary>vbCancel = MsgBoxResult.Cancel - Cancel button was pressed.</summary>
  337. </member>
  338. <member name="T:Microsoft.VisualBasic.ControlChars">
  339. <summary>The ControlChars class contains constants used as control characters. These constants can be used anywhere in your code.
  340. </summary>
  341. </member>
  342. <member name="T:Microsoft.VisualBasic.Conversion">
  343. <summary>The Conversion module contains the procedures used to perform various conversion operations.
  344. </summary>
  345. </member>
  346. <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Decimal)">
  347. <summary>Return the integer portion of a number.
  348. </summary>
  349. <param name="number">A number of type Decimal or any valid numeric expression.
  350. </param>
  351. </member>
  352. <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Double)">
  353. <summary>Return the integer portion of a number.
  354. </summary>
  355. <param name="number">A number of type Double or any valid numeric expression.
  356. </param>
  357. summary
  358. </member>
  359. <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Int16)">
  360. <summary>Return the integer portion of a number.
  361. </summary>
  362. <param name="number">A number of type Short or any valid numeric expression.
  363. </param>
  364. summary
  365. </member>
  366. <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Int32)">
  367. <summary>Return the integer portion of a number.
  368. </summary>
  369. <param name="number">A number of type Integer or any valid numeric expression.
  370. </param>
  371. summary
  372. </member>
  373. <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Int64)">
  374. <summary>Return the integer portion of a number.
  375. </summary>
  376. <param name="number">A number of type Long or any valid numeric expression.
  377. </param>
  378. summary
  379. </member>
  380. <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Object)">
  381. <summary>Return the integer portion of a number.
  382. </summary>
  383. <param name="number">A number of type Object or any valid numeric expression. If number contains Nothing, Nothing is returned.
  384. </param>
  385. summary
  386. </member>
  387. <member name="M:Microsoft.VisualBasic.Conversion.Fix(System.Single)">
  388. <summary>Return the integer portion of a number.
  389. </summary>
  390. <param name="number">A number of type Single or any valid numeric expression.
  391. </param>
  392. summary
  393. </member>
  394. <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Byte)">
  395. <summary>Returns a String representing the hexadecimal value of a number.
  396. </summary>
  397. <param name="Number">Any valid numeric expression
  398. </param>
  399. summary
  400. </member>
  401. <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Int16)">
  402. <summary>Returns a String representing the hexadecimal value of a number.
  403. </summary>
  404. <param name="Number">Any valid numeric expression
  405. </param>
  406. summary
  407. </member>
  408. <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Int32)">
  409. <summary>Returns a String representing the hexadecimal value of a number.
  410. </summary>
  411. <param name="Number">Any valid numeric expression
  412. </param>
  413. summary
  414. </member>
  415. <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Int64)">
  416. <summary>Returns a String representing the hexadecimal value of a number.
  417. </summary>
  418. <param name="Number">Any valid numeric expression
  419. </param>
  420. summary
  421. </member>
  422. <member name="M:Microsoft.VisualBasic.Conversion.Hex(System.Object)">
  423. <summary>Returns a String representing the hexadecimal value of a number.
  424. </summary>
  425. <param name="Number">Any valid numeric expression or String expression.
  426. </param>
  427. </member>
  428. <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Decimal)">
  429. <summary>Return the integer portion of a number.
  430. </summary>
  431. <param name="number">A number of type Decimal or any valid numeric expression.
  432. </param>
  433. </member>
  434. <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Double)">
  435. <summary>Return the integer portion of a number.
  436. </summary>
  437. <param name="number">A number of type Double or any valid numeric expression.
  438. </param>
  439. </member>
  440. <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Int16)">
  441. <summary>Return the integer portion of a number.
  442. </summary>
  443. <param name="number">A number of type Short or any valid numeric expression.
  444. </param>
  445. </member>
  446. <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Int32)">
  447. <summary>Return the integer portion of a number.
  448. </summary>
  449. <param name="number">A number of type Integer or any valid numeric expression.
  450. </param>
  451. </member>
  452. <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Int64)">
  453. <summary>Return the integer portion of a number.
  454. </summary>
  455. <param name="number">A number of type Long or any valid numeric expression.
  456. </param>
  457. </member>
  458. <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Object)">
  459. <summary>Return the integer portion of a number.
  460. </summary>
  461. <param name="number">A number of type Object or any valid numeric expression. If number contains Nothing, Nothing is returned.
  462. </param>
  463. </member>
  464. <member name="M:Microsoft.VisualBasic.Conversion.Int(System.Single)">
  465. <summary>Return the integer portion of a number.
  466. </summary>
  467. <param name="number">A number of type Single or any valid numeric expression.
  468. </param>
  469. </member>
  470. <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Byte)">
  471. <summary>Returns a string representing the octal value of a number.
  472. </summary>
  473. <param name="Number">Any valid numeric expression.
  474. </param>
  475. </member>
  476. <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Int16)">
  477. <summary>Returns a string representing the octal value of a number.
  478. </summary>
  479. <param name="Number">Any valid numeric expression.
  480. </param>
  481. </member>
  482. <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Int32)">
  483. <summary>Returns a string representing the octal value of a number.
  484. </summary>
  485. <param name="Number">Any valid numeric expression.
  486. </param>
  487. </member>
  488. <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Int64)">
  489. <summary>Returns a string representing the octal value of a number.
  490. </summary>
  491. <param name="Number">Any valid numeric expression.
  492. </param>
  493. </member>
  494. <member name="M:Microsoft.VisualBasic.Conversion.Oct(System.Object)">
  495. <summary>Returns a string representing the octal value of a number.
  496. </summary>
  497. <param name="Number">Any valid numeric expression.
  498. </param>
  499. </member>
  500. <member name="M:Microsoft.VisualBasic.Conversion.Str(System.Object)">
  501. <summary>Returns a String representation of a number.
  502. </summary>
  503. <param name="number">An Object containing any valid numeric expression.
  504. </param>
  505. </member>
  506. <member name="M:Microsoft.VisualBasic.Conversion.Val(System.Char)">
  507. <summary>Returns the numbers contained in a string as a numeric value of appropriate type.
  508. </summary>
  509. <param name="Expression">Any valid String expression.
  510. </param>
  511. </member>
  512. <member name="M:Microsoft.VisualBasic.Conversion.Val(System.Object)">
  513. <summary>Returns the numbers contained in a string as a numeric value of appropriate type.
  514. </summary>
  515. <param name="Expression">Any valid String expression.
  516. </param>
  517. </member>
  518. <member name="M:Microsoft.VisualBasic.Conversion.Val(System.String)">
  519. <summary>Returns the numbers contained in a string as a numeric value of appropriate type.
  520. </summary>
  521. <param name="InputStr">Any valid String expression.
  522. </param>
  523. </member>
  524. <member name="T:Microsoft.VisualBasic.DateAndTime">
  525. <summary>The DateTime module contains the procedures and properties used in date and time operations.
  526. </summary>
  527. </member>
  528. <member name="M:Microsoft.VisualBasic.DateAndTime.DateAdd(Microsoft.VisualBasic.DateInterval,System.Double,System.DateTime)">
  529. <summary>Returns a Date containing a date and time value to which a specified time interval has been added.
  530. </summary>
  531. <param name="Interval">DateInterval enumeration value representing the time interval you want to add.
  532. </param>
  533. <param name="Number">Double. Floating-point expression representing the number of intervals you want to add. Number can be positive (to get date/time values in the future) or negative (to get date/time values in the past).
  534. </param>
  535. <param name="DateValue">Date. An expression representing the date and time to which the interval is to be added. DateValue itself is not changed in the calling program.
  536. </param>
  537. </member>
  538. <member name="M:Microsoft.VisualBasic.DateAndTime.DateAdd(System.String,System.Double,System.Object)">
  539. <summary>Returns a Date containing a date and time value to which a specified time interval has been added.
  540. </summary>
  541. <param name="Interval">DateInterval String expression representing the time interval you want to add.
  542. </param>
  543. <param name="Number">Double. Floating-point expression representing the number of intervals you want to add. Number can be positive (to get date/time values in the future) or negative (to get date/time values in the past).
  544. </param>
  545. <param name="DateValue">Date. An expression representing the date and time to which the interval is to be added. DateValue itself is not changed in the calling program.
  546. </param>
  547. </member>
  548. <member name="M:Microsoft.VisualBasic.DateAndTime.DateDiff(Microsoft.VisualBasic.DateInterval,System.DateTime,System.DateTime,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)">
  549. <summary>Returns a Long specifying the number of time intervals between two Date values.
  550. </summary>
  551. <param name="Interval">DateInterval enumeration value representing the time interval you want to use as the unit of difference between Date1 and Date2.
  552. </param>
  553. <param name="Date1">The value of Date1 is subtracted from the value of Date2 to produce the difference.
  554. </param>
  555. <param name="Date2">The value of Date1 is subtracted from the value of Date2 to produce the difference.
  556. </param>
  557. <param name="DayOfWeek">A value chosen from the FirstDayOfWeek enumeration that specifies the first day of the week.
  558. </param>
  559. <param name="WeekOfYear">A value chosen from the FirstWeekOfYear enumeration that specifies the first week of the year.
  560. </param>
  561. </member>
  562. <member name="M:Microsoft.VisualBasic.DateAndTime.DateDiff(System.String,System.Object,System.Object,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)">
  563. <summary>Returns a Long specifying the number of time intervals between two Date values.
  564. </summary>
  565. <param name="Interval">String expression representing the time interval you want to use as the unit of difference between Date1 and Date2.</param>
  566. <param name="Date1">The value of Date1 is subtracted from the value of Date2 to produce the difference.
  567. </param>
  568. <param name="Date2">The value of Date1 is subtracted from the value of Date2 to produce the difference.
  569. </param>
  570. <param name="DayOfWeek">A value chosen from the FirstDayOfWeek enumeration that specifies the first day of the week.
  571. </param>
  572. <param name="WeekOfYear">A value chosen from the FirstWeekOfYear enumeration that specifies the first week of the year.
  573. </param>
  574. </member>
  575. <member name="M:Microsoft.VisualBasic.DateAndTime.DatePart(Microsoft.VisualBasic.DateInterval,System.DateTime,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)">
  576. <summary>Returns an Integer containing the specified component of a given Date value.
  577. </summary>
  578. <param name="Interval">DateInterval enumeration value representing the part of the date/time value you want to return.
  579. </param>
  580. <param name="DateValue">Date value that you want to evaluate.
  581. </param>
  582. <param name="FirstDayOfWeekValue">A value chosen from the FirstDayOfWeek enumeration that specifies the first day of the week.
  583. </param>
  584. <param name="FirstWeekOfYearValue">A value chosen from the FirstWeekOfYear enumeration that specifies the first week of the year.
  585. </param>
  586. </member>
  587. <member name="M:Microsoft.VisualBasic.DateAndTime.DatePart(System.String,System.Object,Microsoft.VisualBasic.FirstDayOfWeek,Microsoft.VisualBasic.FirstWeekOfYear)">
  588. <summary>Returns an Integer containing the specified component of a given Date value.
  589. </summary>
  590. <param name="Interval">String expression representing the part of the date/time value you want to return.
  591. </param>
  592. <param name="DateValue">Date value that you want to evaluate.
  593. </param>
  594. <param name="DayOfWeek">A value chosen from the FirstDayOfWeek enumeration that specifies the first day of the week.
  595. </param>
  596. <param name="WeekOfYear">A value chosen from the FirstWeekOfYear enumeration that specifies the first week of the year.
  597. </param>
  598. </member>
  599. <member name="M:Microsoft.VisualBasic.DateAndTime.DateSerial(System.Int32,System.Int32,System.Int32)">
  600. <summary>Returns a Date representing a specified year, month, and day, with the time information set to midnight (00:00:00).
  601. </summary>
  602. <param name="Year">Integer expression from 1 through 9999.
  603. </param>
  604. <param name="Month">Integer expression from 1 through 12.</param>
  605. <param name="Day">Integer expression from 1 through 31.
  606. </param>
  607. </member>
  608. <member name="P:Microsoft.VisualBasic.DateAndTime.DateString">
  609. <summary>Returns or sets a String representing the current date according to your system.
  610. </summary>
  611. </member>
  612. <member name="M:Microsoft.VisualBasic.DateAndTime.DateValue(System.String)">
  613. <summary>Returns a Date containing the date information represented by a string, with the time information set to midnight (00:00:00).
  614. </summary>
  615. <param name="StringDate">String expression representing a date/time value.
  616. </param>
  617. </member>
  618. <member name="M:Microsoft.VisualBasic.DateAndTime.Day(System.DateTime)">
  619. <summary>Returns an Integer from 1 through 31 representing the day of the month.
  620. </summary>
  621. <param name="DateValue">Date value from which you want to extract the day.
  622. </param>
  623. </member>
  624. <member name="M:Microsoft.VisualBasic.DateAndTime.Hour(System.DateTime)">
  625. <summary>Returns an Integer from 0 through 23 representing the hour of the day.
  626. </summary>
  627. <param name="TimeValue">Date value from which you want to extract the hour.
  628. </param>
  629. </member>
  630. <member name="M:Microsoft.VisualBasic.DateAndTime.Minute(System.DateTime)">
  631. <summary>Returns an Integer from 0 through 59 representing the minute of the hour.
  632. </summary>
  633. <param name="TimeValue">Date value from which you want to extract the minute.
  634. </param>
  635. </member>
  636. <member name="M:Microsoft.VisualBasic.DateAndTime.Month(System.DateTime)">
  637. <summary>Returns an Integer from 1 through 12 representing the month of the year.
  638. </summary>
  639. <param name="DateValue">Date value from which you want to extract the month.
  640. </param>
  641. </member>
  642. <member name="M:Microsoft.VisualBasic.DateAndTime.MonthName(System.Int32,System.Boolean)">
  643. <summary>Returns a String value containing the name of the specified month.
  644. </summary>
  645. <param name="Month">The numeric designation of the month, from 1 through 13.
  646. </param>
  647. <param name="Abbreviate">Boolean value that indicates if the month name is to be abbreviated.
  648. </param>
  649. </member>
  650. <member name="P:Microsoft.VisualBasic.DateAndTime.Now">
  651. <summary>Returns a Date containing the current date and time according to your system.
  652. </summary>
  653. </member>
  654. <member name="M:Microsoft.VisualBasic.DateAndTime.Second(System.DateTime)">
  655. <summary>Returns an Integer value from 0 through 59 representing the second of the minute.
  656. </summary>
  657. <param name="TimeValue">Date value from which you want to extract the second.
  658. </param>
  659. </member>
  660. <member name="P:Microsoft.VisualBasic.DateAndTime.TimeOfDay">
  661. <summary>Returns or sets a Date containing the current time of day according to your system.
  662. </summary>
  663. </member>
  664. <member name="P:Microsoft.VisualBasic.DateAndTime.Timer">
  665. <summary>Returns a Double value representing the number of seconds elapsed since midnight.
  666. </summary>
  667. </member>
  668. <member name="M:Microsoft.VisualBasic.DateAndTime.TimeSerial(System.Int32,System.Int32,System.Int32)">
  669. <summary>Returns a Date representing a specified hour, minute, and second, with the date information set to January 1 of the year 1.
  670. </summary>
  671. <param name="Hour">Integer expression from 0 through 23.
  672. </param>
  673. <param name="Minute">Integer expression from 0 through 59.
  674. </param>
  675. <param name="Second">Integer expression from 0 through 59.
  676. </param>
  677. </member>
  678. <member name="P:Microsoft.VisualBasic.DateAndTime.TimeString">
  679. <summary>Returns or sets a String value representing the current time of day according to your system.
  680. </summary>
  681. </member>
  682. <member name="M:Microsoft.VisualBasic.DateAndTime.TimeValue(System.String)">
  683. <summary>Returns a Date value containing the time information represented by a string, with the date information set to January 1 of the year 1.
  684. </summary>
  685. <param name="StringTime">String expression representing a date/time value from 00:00:00 on January 1 of the year 1 through 23:59:59 on December 31, 9999.
  686. </param>
  687. </member>
  688. <member name="P:Microsoft.VisualBasic.DateAndTime.Today">
  689. <summary>Returns or sets a Date containing the current date according to your system.
  690. </summary>
  691. </member>
  692. <member name="M:Microsoft.VisualBasic.DateAndTime.Weekday(System.DateTime,Microsoft.VisualBasic.FirstDayOfWeek)">
  693. <summary>Returns an Integer containing a number representing the day of the week.
  694. </summary>
  695. <param name="DateValue">Date value for which you want to determine the day of the week.
  696. </param>
  697. <param name="DayOfWeek">A value chosen from the FirstDayOfWeek enumeration that specifies the first day of the week.
  698. </param>
  699. </member>
  700. <member name="M:Microsoft.VisualBasic.DateAndTime.WeekdayName(System.Int32,System.Boolean,Microsoft.VisualBasic.FirstDayOfWeek)">
  701. <summary>Returns a String containing the name of the specified weekday.
  702. </summary>
  703. <param name="WeekDay">The numeric designation for the weekday, from 1 through 7;
  704. </param>
  705. <param name="Abbreviate">Boolean value that indicates if the weekday name is to be abbreviated.
  706. </param>
  707. <param name="FirstDayOfWeekValue">A value chosen from the FirstDayOfWeek enumeration that specifies the first day of the week.
  708. </param>
  709. </member>
  710. <member name="M:Microsoft.VisualBasic.DateAndTime.Year(System.DateTime)">
  711. <summary>Returns an Integer value from 1 through 9999 representing the year.
  712. </summary>
  713. <param name="DateValue">Date value from which you want to extract the year.
  714. </param>
  715. </member>
  716. <member name="T:Microsoft.VisualBasic.DateFormat">
  717. <summary>The DateFormat enumeration defines constants used to identify how the date and time are formatted.
  718. </summary>
  719. </member>
  720. <member name="T:Microsoft.VisualBasic.DateInterval">
  721. <summary>The DateInterval enumeration defines constants used to identify how the date and time are formatted.
  722. </summary>
  723. </member>
  724. <member name="T:Microsoft.VisualBasic.DueDate">
  725. <summary>The DueDate enumeration defines constants used to identify how the date and time are formatted.
  726. </summary>
  727. </member>
  728. <member name="T:Microsoft.VisualBasic.ErrObject">
  729. <summary>The ErrObject module contains properties and procedures used to identify and handle run-time errors using the Err object.
  730. </summary>
  731. </member>
  732. <member name="M:Microsoft.VisualBasic.ErrObject.Clear">
  733. <summary>Clears all property settings of the Err object.
  734. </summary>
  735. </member>
  736. <member name="P:Microsoft.VisualBasic.ErrObject.Description">
  737. <summary>Returns or sets a String expression containing a descriptive string associated with an error.
  738. </summary>
  739. </member>
  740. <member name="M:Microsoft.VisualBasic.ErrObject.GetException">
  741. <summary>Returns the exception representing the error that has occurred.
  742. </summary>
  743. </member>
  744. <member name="P:Microsoft.VisualBasic.ErrObject.HelpContext">
  745. <summary>Returns or sets an Integer containing the context ID for a topic in a Help file.
  746. </summary>
  747. </member>
  748. <member name="P:Microsoft.VisualBasic.ErrObject.HelpFile">
  749. <summary>Returns or sets a String expression containing the fully qualified path to a Help file.
  750. </summary>
  751. </member>
  752. <member name="P:Microsoft.VisualBasic.ErrObject.LastDllError">
  753. <summary>Returns a system error code produced by a call to a dynamic-link library (DLL).
  754. </summary>
  755. </member>
  756. <member name="P:Microsoft.VisualBasic.ErrObject.Number">
  757. <summary>Returns or sets a numeric value specifying an error.
  758. </summary>
  759. </member>
  760. <member name="M:Microsoft.VisualBasic.ErrObject.Raise(System.Int32,System.Object,System.Object,System.Object,System.Object)">
  761. <param name="Number">Long integer that identifies the nature of the error.
  762. </param>
  763. <param name="Source">String expression naming the object or application that generated the error.
  764. </param>
  765. <param name="Description">String expression describing the error. If unspecified, the value in the Number property is examined to determine a description.
  766. </param>
  767. <param name="HelpFile">The fully qualified path to the Help file in which help on this error can be found.
  768. </param>
  769. <param name="HelpContext">The context ID identifying a topic within HelpFile that provides help for the error.
  770. </param>
  771. <summary>Generates a run-time error; can be used instead of the Error statement.
  772. </summary>
  773. </member>
  774. <member name="P:Microsoft.VisualBasic.ErrObject.Source">
  775. <summary>Returns or sets a String expression specifying the name of the object or application that originally generated the error. Read/write.
  776. </summary>
  777. </member>
  778. <member name="T:Microsoft.VisualBasic.FileAttribute">
  779. <summary>The FileAttribute enumeration contains constants used to identify file attributes used in the Dir, GetAttr, and SetAttr functions.
  780. </summary>
  781. </member>
  782. <member name="T:Microsoft.VisualBasic.FileSystem">
  783. <summary>The FileSystem module contains the procedures used to perform file, directory or folder, and system operations.
  784. </summary>
  785. </member>
  786. <member name="M:Microsoft.VisualBasic.FileSystem.ChDir(System.String)">
  787. <param name="Path">A String expression that identifies which directory or folder becomes the new default directory or folder.
  788. </param>
  789. <summary>Changes the current directory or folder.
  790. </summary>
  791. </member>
  792. <member name="M:Microsoft.VisualBasic.FileSystem.ChDrive(System.Char)">
  793. <param name="Drive">Char expression that specifies an existing drive.
  794. </param>
  795. <summary>Changes the current drive.
  796. </summary>
  797. </member>
  798. <member name="M:Microsoft.VisualBasic.FileSystem.ChDrive(System.String)">
  799. <param name="Drive">String expression that specifies an existing drive.
  800. </param>
  801. <summary>Changes the current drive.
  802. </summary>
  803. </member>
  804. <member name="M:Microsoft.VisualBasic.FileSystem.CurDir">
  805. <summary>Returns a string representing the current path.
  806. </summary>
  807. </member>
  808. <member name="M:Microsoft.VisualBasic.FileSystem.CurDir(System.Char)">
  809. <summary>Returns a string representing the current path.
  810. </summary>
  811. <param name="Drive">Expression that specifies an existing drive.
  812. </param>
  813. </member>
  814. <member name="M:Microsoft.VisualBasic.FileSystem.Dir">
  815. <summary>Returns the name of the next file, directory, or folder that matches the previously specified pattern.
  816. </summary>
  817. </member>
  818. <member name="M:Microsoft.VisualBasic.FileSystem.Dir(System.String,Microsoft.VisualBasic.FileAttribute)">
  819. <summary>Returns a string representing the name of a file, directory, or folder that matches a specified pattern or file attribute, or the volume label of a drive.
  820. </summary>
  821. <param name="Pathname">String expression that specifies a file name, directory or folder name, or drive volume label.
  822. </param>
  823. <param name="Attributes">Enumeration whose value specifies file attributes. If omitted, returns files that match Pathname, but have no attributes.
  824. </param>
  825. </member>
  826. <member name="M:Microsoft.VisualBasic.FileSystem.EOF(System.Int32)">
  827. <summary>Returns a Boolean value True when the end of a file opened for Random or sequential Input has been reached.
  828. </summary>
  829. <param name="FileNumber">Any valid file number.
  830. </param>
  831. </member>
  832. <member name="M:Microsoft.VisualBasic.FileSystem.FileAttr(System.Int32)">
  833. <summary>Returns an enumeration representing the file mode for files opened using the FileOpen function.
  834. </summary>
  835. <param name="FileNumber">Any valid file number.
  836. </param>
  837. </member>
  838. <member name="M:Microsoft.VisualBasic.FileSystem.FileClose(System.Int32[])">
  839. <param name="FileNumbers">Parameter array of 0 or more channels to be closed.
  840. </param>
  841. <summary>Concludes input/output (I/O) to a file opened using the FileOpen function.
  842. </summary>
  843. </member>
  844. <member name="M:Microsoft.VisualBasic.FileSystem.FileCopy(System.String,System.String)">
  845. <param name="Source">String expression that specifies the name of the file to be copied. Source may include the directory or folder, and drive, of the source file.
  846. </param>
  847. <param name="Destination">String expression that specifies the target file name. Destination may include the directory or folder, and drive, of the destination file.
  848. </param>
  849. <summary>Copies a file.
  850. </summary>
  851. </member>
  852. <member name="M:Microsoft.VisualBasic.FileSystem.FileDateTime(System.String)">
  853. <summary>Returns a Date value that indicates the date and time when a file was created or last modified.
  854. </summary>
  855. <param name="Pathname">String expression that specifies a file name. Pathname may include the directory or folder, and the drive.
  856. </param>
  857. </member>
  858. <member name="M:Microsoft.VisualBasic.FileSystem.FileLen(System.String)">
  859. <summary>Returns a Long value specifying the length of a file in bytes.
  860. </summary>
  861. <param name="Pathname">String expression that specifies a file. Pathname may include the directory or folder, and the drive.
  862. </param>
  863. </member>
  864. <member name="M:Microsoft.VisualBasic.FileSystem.FreeFile">
  865. <summary>Returns an Integer value representing the next file number available for use by the FileOpen function.
  866. </summary>
  867. </member>
  868. <member name="M:Microsoft.VisualBasic.FileSystem.GetAttr(System.String)">
  869. <summary>Returns a FileAttribute value representing the attributes of a file, directory, or folder.
  870. </summary>
  871. <param name="PathName">String expression that specifies a file, directory, or folder name. PathName may include the directory or folder, and the drive.
  872. </param>
  873. </member>
  874. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Boolean@)">
  875. <param name="FileNumber">Any valid file number.
  876. </param>
  877. <param name="Value">Variable to read into.
  878. </param>
  879. <summary>Reads data from an open sequential file and assigns the data to specified variable
  880. </summary>
  881. </member>
  882. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Byte@)">
  883. <param name="FileNumber">Any valid file number.
  884. </param>
  885. <param name="Value">Variable to read into.
  886. </param>
  887. <summary>Reads data from an open sequential file and assigns the data to specified variable
  888. </summary>
  889. </member>
  890. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Char@)">
  891. <param name="FileNumber">Any valid file number.
  892. </param>
  893. <param name="Value">Variable to read into.
  894. </param>
  895. <summary>Reads data from an open sequential file and assigns the data to specified variable
  896. </summary>
  897. </member>
  898. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.DateTime@)">
  899. <param name="FileNumber">Any valid file number.
  900. </param>
  901. <param name="Value">Variable to read into.
  902. </param>
  903. <summary>Reads data from an open sequential file and assigns the data to specified variable
  904. </summary>
  905. </member>
  906. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Decimal@)">
  907. <param name="FileNumber">Any valid file number.
  908. </param>
  909. <param name="Value">Variable to read into.
  910. </param>
  911. <summary>Reads data from an open sequential file and assigns the data to specified variable
  912. </summary>
  913. </member>
  914. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Double@)">
  915. <param name="FileNumber">Any valid file number.
  916. </param>
  917. <param name="Value">Variable to read into.
  918. </param>
  919. <summary>Reads data from an open sequential file and assigns the data to specified variable
  920. </summary>
  921. </member>
  922. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Int16@)">
  923. <param name="FileNumber">Any valid file number.
  924. </param>
  925. <param name="Value">Variable to read into.
  926. </param>
  927. <summary>Reads data from an open sequential file and assigns the data to specified variable
  928. </summary>
  929. </member>
  930. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Int32@)">
  931. <param name="FileNumber">Any valid file number.
  932. </param>
  933. <param name="Value">Variable to read into.
  934. </param>
  935. <summary>Reads data from an open sequential file and assigns the data to specified variable
  936. </summary>
  937. </member>
  938. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Int64@)">
  939. <param name="FileNumber">Any valid file number.
  940. </param>
  941. <param name="Value">Variable to read into.
  942. </param>
  943. <summary>Reads data from an open sequential file and assigns the data to specified variable
  944. </summary>
  945. </member>
  946. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Object@)">
  947. <param name="FileNumber">Any valid file number.
  948. </param>
  949. <param name="Value">Variable to read into.
  950. </param>
  951. <summary>Reads data from an open sequential file and assigns the data to specified variable
  952. </summary>
  953. </member>
  954. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.Single@)">
  955. <param name="FileNumber">Any valid file number.
  956. </param>
  957. <param name="Value">Variable to read into.
  958. </param>
  959. <summary>Reads data from an open sequential file and assigns the data to specified variable
  960. </summary>
  961. </member>
  962. <member name="M:Microsoft.VisualBasic.FileSystem.Input(System.Int32,System.String@)">
  963. <param name="FileNumber">Any valid file number.
  964. </param>
  965. <param name="Value">Variable to read into.
  966. </param>
  967. <summary>Reads data from an open sequential file and assigns the data to specified variable
  968. </summary>
  969. </member>
  970. <member name="M:Microsoft.VisualBasic.FileSystem.InputString(System.Int32,System.Int32)">
  971. <summary>Returns String value containing characters from a file opened in Input or Binary mode.
  972. </summary>
  973. <param name="FileNumber">Any valid file number.
  974. </param>
  975. <param name="CharCount">Any valid numeric expression specifying the number of characters to read.
  976. </param>
  977. </member>
  978. <member name="M:Microsoft.VisualBasic.FileSystem.Kill(System.String)">
  979. <param name="PathName">String expression that specifies one or more file names to be deleted. PathName may include the directory or folder, and the drive.
  980. </param>
  981. <summary>Deletes files from a disk.
  982. </summary>
  983. </member>
  984. <member name="M:Microsoft.VisualBasic.FileSystem.LineInput(System.Int32)">
  985. <summary>Reads a single line from an open sequential file and assigns it to a String variable.
  986. </summary>
  987. <param name="FileNumber">Any valid file number.
  988. </param>
  989. </member>
  990. <member name="M:Microsoft.VisualBasic.FileSystem.Loc(System.Int32)">
  991. <summary>Returns a Long value specifying the current read/write position within an open file.
  992. </summary>
  993. <param name="FileNumber">Any valid Integer file number.
  994. </param>
  995. </member>
  996. <member name="M:Microsoft.VisualBasic.FileSystem.Lock(System.Int32)">
  997. <param name="FileNumber">Any valid file number.
  998. </param>
  999. <summary>Denies access by other processes to all of a file opened using the Open function.
  1000. </summary>
  1001. </member>
  1002. <member name="M:Microsoft.VisualBasic.FileSystem.Lock(System.Int32,System.Int64)">
  1003. <param name="FileNumber">Any valid file number.
  1004. </param>
  1005. <param name="Record">Number of the record to lock.
  1006. </param>
  1007. <summary>Denies access by other processes to a part of a file opened using the Open function.
  1008. </summary>
  1009. </member>
  1010. <member name="M:Microsoft.VisualBasic.FileSystem.Lock(System.Int32,System.Int64,System.Int64)">
  1011. <param name="FileNumber">Any valid file number.
  1012. </param>
  1013. <param name="FromRecord">Number of the first record or byte to lock.
  1014. </param>
  1015. <param name="ToRecord">Number of the last record or byte to lock.
  1016. </param>
  1017. <summary>Denies access by other processes to a part of a file opened using the Open function.
  1018. </summary>
  1019. </member>
  1020. <member name="M:Microsoft.VisualBasic.FileSystem.LOF(System.Int32)">
  1021. <summary>Returns a Long representing the size, in bytes, of a file opened using the Open statement.
  1022. </summary>
  1023. <param name="FileNumber">An Integer containing a valid file number.
  1024. </param>
  1025. </member>
  1026. <member name="M:Microsoft.VisualBasic.FileSystem.MkDir(System.String)">
  1027. <param name="Path">String expression that identifies the directory or folder to be created. The Path may include the drive.
  1028. </param>
  1029. <summary>Creates a new directory or folder.
  1030. </summary>
  1031. </member>
  1032. <member name="M:Microsoft.VisualBasic.FileSystem.Print(System.Int32,System.Object[])">
  1033. <param name="FileNumber">Any valid file number.
  1034. </param>
  1035. <param name="Output">One or more comma-delimited expressions to write to a file.
  1036. </param>
  1037. <summary>Writes display-formatted data to a sequential file.
  1038. </summary>
  1039. </member>
  1040. <member name="M:Microsoft.VisualBasic.FileSystem.Rename(System.String,System.String)">
  1041. <param name="OldPath">String expression that specifies the existing file name and location.
  1042. </param>
  1043. <param name="NewPath">String expression that specifies the new file name and location.
  1044. </param>
  1045. <summary>Renames a disk file, directory, or folder.
  1046. </summary>
  1047. </member>
  1048. <member name="M:Microsoft.VisualBasic.FileSystem.Reset">
  1049. <summary>Closes all disk files opened using the FileOpen function.
  1050. </summary>
  1051. </member>
  1052. <member name="M:Microsoft.VisualBasic.FileSystem.RmDir(System.String)">
  1053. <param name="Path">String expression that identifies the directory or folder to be removed.
  1054. </param>
  1055. <summary>Removes an existing directory or folder.
  1056. </summary>
  1057. </member>
  1058. <member name="M:Microsoft.VisualBasic.FileSystem.Seek(System.Int32)">
  1059. <summary>Returns a Long specifying the current read/write position within a file opened using the FileOpen function.
  1060. </summary>
  1061. <param name="FileNumber">An Integer containing a valid file number.
  1062. </param>
  1063. </member>
  1064. <member name="M:Microsoft.VisualBasic.FileSystem.Seek(System.Int32,System.Int64)">
  1065. <param name="FileNumber">An Integer containing a valid file number.
  1066. </param>
  1067. <param name="Position">A numeric expression specifying the new position.
  1068. </param>
  1069. <summary>Sets the position for the next read/write operation within a file opened using the FileOpen function.
  1070. </summary>
  1071. </member>
  1072. <member name="M:Microsoft.VisualBasic.FileSystem.SetAttr(System.String,Microsoft.VisualBasic.FileAttribute)">
  1073. <param name="PathName">String expression that specifies a file name. PathName may include directory or folder, and drive.
  1074. </param>
  1075. <param name="Attributes">Enumeration expression, whose sum specifies file attributes.
  1076. </param>
  1077. <summary>Sets attribute information for a file.
  1078. </summary>
  1079. </member>
  1080. <member name="M:Microsoft.VisualBasic.FileSystem.SPC(System.Int16)">
  1081. <summary>Used with the Print or PrintLine functions to position output.
  1082. </summary>
  1083. <param name="Count">The number of spaces to insert before displaying or printing the next expression in a list.
  1084. </param>
  1085. </member>
  1086. <member name="M:Microsoft.VisualBasic.FileSystem.TAB">
  1087. <summary>Used with the Print or PrintLine functions to position output. Tab moves the insertion point to the next column
  1088. </summary>
  1089. </member>
  1090. <member name="M:Microsoft.VisualBasic.FileSystem.TAB(System.Int16)">
  1091. <summary>Used with the Print or PrintLine functions to position output.
  1092. </summary>
  1093. <param name="Column">The column number moved to before displaying or printing the next expression in a list.
  1094. </param>
  1095. </member>
  1096. <member name="M:Microsoft.VisualBasic.FileSystem.Unlock(System.Int32)">
  1097. <param name="FileNumber">Any valid file number.
  1098. </param>
  1099. <summary>Re-enables access by other processes to a file locked using the lock function.
  1100. </summary>
  1101. </member>
  1102. <member name="M:Microsoft.VisualBasic.FileSystem.Unlock(System.Int32,System.Int64)">
  1103. <param name="FileNumber">Any valid file number.
  1104. </param>
  1105. <param name="Record">Number of the record to unlock.
  1106. </param>
  1107. <summary>Re-enables access by other processes to a part of a file locked using the lock function.
  1108. </summary>
  1109. </member>
  1110. <member name="M:Microsoft.VisualBasic.FileSystem.Unlock(System.Int32,System.Int64,System.Int64)">
  1111. <param name="FileNumber">Any valid file number.
  1112. </param>
  1113. <param name="FromRecord">Number of the first record or byte to unlock.
  1114. </param>
  1115. <param name="ToRecord">Number of the last record or byte to unlock.
  1116. </param>
  1117. <summary>Re-enables access by other processes to a part of a file locked using the lock function.
  1118. </summary>
  1119. </member>
  1120. <member name="M:Microsoft.VisualBasic.FileSystem.Write(System.Int32,System.Object[])">
  1121. <param name="FileNumber">Any valid file number.
  1122. </param>
  1123. <param name="Output">One or more comma-delimited expressions to write to a file.
  1124. </param>
  1125. <summary>Writes data to a sequential file. Data written with Write is usually read from a file with Input.
  1126. </summary>
  1127. </member>
  1128. <member name="T:Microsoft.VisualBasic.Financial">
  1129. <summary>The Financial module contains procedures used to perform financial operations.
  1130. </summary>
  1131. </member>
  1132. <member name="M:Microsoft.VisualBasic.Financial.DDB(System.Double,System.Double,System.Double,System.Double,System.Double)">
  1133. <summary>Returns a Double specifying the depreciation of an asset for a specific time period using the double-declining balance method or some other method you specify.
  1134. </summary>
  1135. <param name="Cost">Double specifying initial cost of the asset.
  1136. </param>
  1137. <param name="Salvage">Double specifying value of the asset at the end of its useful life.
  1138. </param>
  1139. <param name="Life">Double specifying length of useful life of the asset.
  1140. </param>
  1141. <param name="Period">Double specifying period for which asset depreciation is calculated.
  1142. </param>
  1143. <param name="Factor">Double specifying rate at which the balance declines.
  1144. </param>
  1145. </member>
  1146. <member name="M:Microsoft.VisualBasic.Financial.FV(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
  1147. <summary>Returns a Double specifying the future value of an annuity based on periodic, fixed payments and a fixed interest rate.
  1148. </summary>
  1149. <param name="Rate">Double specifying interest rate per period.
  1150. </param>
  1151. <param name="NPer">Double specifying total number of payment periods in the annuity.
  1152. </param>
  1153. <param name="Pmt">Double specifying payment to be made each period.
  1154. </param>
  1155. <param name="PV">Double specifying present value (or lump sum) of a series of future payments.
  1156. </param>
  1157. <param name="Due">Object of type Microsoft.VisualBasic.DueDate that specifies when payments are due.
  1158. </param>
  1159. </member>
  1160. <member name="M:Microsoft.VisualBasic.Financial.IPmt(System.Double,System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
  1161. <summary>Returns a Double specifying the interest payment for a given period of an annuity based on periodic, fixed payments and a fixed interest rate.
  1162. </summary>
  1163. <param name="Rate">Double specifying interest rate per period.
  1164. </param>
  1165. <param name="Per">Double specifying payment period in the range 1 through NPer.
  1166. </param>
  1167. <param name="NPer">Double specifying total number of payment periods in the annuity.
  1168. </param>
  1169. <param name="PV">Double specifying present value, or value today, of a series of future payments or receipts.
  1170. </param>
  1171. <param name="FV">Double specifying future value or cash balance you want after you've made the final payment.
  1172. </param>
  1173. <param name="Due">Object of type Microsoft.VisualBasic.DueDate that specifies when payments are due.
  1174. </param>
  1175. </member>
  1176. <member name="M:Microsoft.VisualBasic.Financial.IRR(System.Double[]@,System.Double)">
  1177. <summary>Returns a Double specifying the internal rate of return for a series of periodic cash flows (payments and receipts).
  1178. </summary>
  1179. <param name="ValueArray">Array of Double specifying cash flow values. The array must contain at least one negative value (a payment) and one positive value (a receipt).
  1180. </param>
  1181. <param name="Guess">Object specifying value you estimate will be returned by IRR. I
  1182. </param>
  1183. </member>
  1184. <member name="M:Microsoft.VisualBasic.Financial.MIRR(System.Double[]@,System.Double,System.Double)">
  1185. <summary>Returns a Double specifying the modified internal rate of return for a series of periodic cash flows (payments and receipts).
  1186. </summary>
  1187. <param name="ValueArray">Array of Double specifying cash flow values. The array must contain at least one negative value (a payment) and one positive value (a receipt).
  1188. </param>
  1189. <param name="FinanceRate">Double specifying interest rate paid as the cost of financing.
  1190. </param>
  1191. <param name="ReinvestRate">Double specifying interest rate received on gains from cash reinvestment.
  1192. </param>
  1193. </member>
  1194. <member name="M:Microsoft.VisualBasic.Financial.NPer(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
  1195. <summary>Returns a Double specifying the number of periods for an annuity based on periodic, fixed payments and a fixed interest rate.
  1196. </summary>
  1197. <param name="Rate">Double specifying interest rate per period.
  1198. </param>
  1199. <param name="Pmt">Double specifying payment to be made each period. Payments usually contain principal and interest that doesn't change over the life of the annuity.
  1200. </param>
  1201. <param name="PV">Double specifying present value, or value today, of a series of future payments or receipts.
  1202. </param>
  1203. <param name="FV">Double specifying future value or cash balance you want after you've made the final payment.
  1204. </param>
  1205. <param name="Due">Object of type Microsoft.VisualBasic.DueDate that specifies when payments are due.
  1206. </param>
  1207. </member>
  1208. <member name="M:Microsoft.VisualBasic.Financial.NPV(System.Double,System.Double[]@)">
  1209. <summary>Returns a Double specifying the net present value of an investment based on a series of periodic cash flows (payments and receipts) and a discount rate.
  1210. </summary>
  1211. <param name="Rate">Double specifying discount rate over the length of the period, expressed as a decimal.
  1212. </param>
  1213. <param name="ValueArray">Array of Double specifying cash flow values. The array must contain at least one negative value (a payment) and one positive value (a receipt).
  1214. </param>
  1215. </member>
  1216. <member name="M:Microsoft.VisualBasic.Financial.Pmt(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
  1217. <summary>Returns a Double specifying the payment for an annuity based on periodic, fixed payments and a fixed interest rate.
  1218. </summary>
  1219. <param name="Rate">Double specifying interest rate per period.
  1220. </param>
  1221. <param name="NPer">Double specifying total number of payment periods in the annuity.
  1222. </param>
  1223. <param name="PV">Double specifying present value (or lump sum) that a series of payments to be paid in the future is worth now.
  1224. </param>
  1225. <param name="FV">Double specifying future value or cash balance you want after you've made the final payment.
  1226. </param>
  1227. <param name="Due">Enumeration of type Microsoft.VisualBasic.DueDate that specifies when payments are due.
  1228. </param>
  1229. </member>
  1230. <member name="M:Microsoft.VisualBasic.Financial.PPmt(System.Double,System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
  1231. <summary>Returns a Double specifying the principal payment for a given period of an annuity based on periodic, fixed payments and a fixed interest rate.
  1232. </summary>
  1233. <param name="Rate">Double specifying interest rate per period.
  1234. </param>
  1235. <param name="Per">Double specifying payment period in the range 1 through NPer.
  1236. </param>
  1237. <param name="NPer">Double specifying total number of payment periods in the annuity.
  1238. </param>
  1239. <param name="PV">Double specifying present value, or value today, of a series of future payments or receipts.
  1240. </param>
  1241. <param name="FV">Double specifying future value or cash balance you want after you've made the final payment.
  1242. </param>
  1243. <param name="Due">Enumeration of type Microsoft.VisualBasic.DueDate that specifies when payments are due.
  1244. </param>
  1245. </member>
  1246. <member name="M:Microsoft.VisualBasic.Financial.PV(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate)">
  1247. <summary>Returns a Double specifying the present value of an annuity based on periodic, fixed payments to be paid in the future and a fixed interest rate.
  1248. </summary>
  1249. <param name="Rate">Double specifying interest rate per period.
  1250. </param>
  1251. <param name="NPer">Double specifying total number of payment periods in the annuity.
  1252. </param>
  1253. <param name="Pmt">Double specifying payment to be made each period.
  1254. </param>
  1255. <param name="FV">Double specifying future value or cash balance you want after you've made the final payment.</param>
  1256. <param name="Due">Object of type Microsoft.VisualBasic.DueDate that specifies when payments are due.
  1257. </param>
  1258. </member>
  1259. <member name="M:Microsoft.VisualBasic.Financial.Rate(System.Double,System.Double,System.Double,System.Double,Microsoft.VisualBasic.DueDate,System.Double)">
  1260. <summary>Returns a Double specifying the interest rate per period for an annuity.
  1261. </summary>
  1262. <param name="NPer">Double specifying total number of payment periods in the annuity.
  1263. </param>
  1264. <param name="Pmt">Double specifying payment to be made each period.
  1265. </param>
  1266. <param name="PV">Double specifying present value, or value today, of a series of future payments or receipts.
  1267. </param>
  1268. <param name="FV">Double specifying future value or cash balance you want after you make the final payment.
  1269. </param>
  1270. <param name="Due">Object of type Microsoft.VisualBasic.DueDate that specifies when payments are due.
  1271. </param>
  1272. <param name="Guess">Double specifying value you estimate will be returned by Rate.
  1273. </param>
  1274. </member>
  1275. <member name="M:Microsoft.VisualBasic.Financial.SLN(System.Double,System.Double,System.Double)">
  1276. <summary>Returns a Double specifying the straight-line depreciation of an asset for a single period.
  1277. </summary>
  1278. <param name="Cost">Double specifying initial cost of the asset.
  1279. </param>
  1280. <param name="Salvage">Double specifying value of the asset at the end of its useful life.
  1281. </param>
  1282. <param name="Life">Double specifying length of the useful life of the asset.
  1283. </param>
  1284. </member>
  1285. <member name="M:Microsoft.VisualBasic.Financial.SYD(System.Double,System.Double,System.Double,System.Double)">
  1286. <summary>Returns a Double specifying the sum-of-years digits depreciation of an asset for a specified period.
  1287. </summary>
  1288. <param name="Cost">Double specifying initial cost of the asset.
  1289. </param>
  1290. <param name="Salvage">Double specifying value of the asset at the end of its useful life.
  1291. </param>
  1292. <param name="Life">Double specifying length of the useful life of the asset.
  1293. </param>
  1294. <param name="Period">Double specifying period for which asset depreciation is calculated.
  1295. </param>
  1296. </member>
  1297. <member name="T:Microsoft.VisualBasic.FirstDayOfWeek">
  1298. <summary>The FirstDayOfWeek enumeration contains constants used to identify specific days of the week when using the DateDiff, DatePart, and Weekday functions. These constants can be used anywhere in your code.
  1299. </summary>
  1300. </member>
  1301. <member name="T:Microsoft.VisualBasic.FirstWeekOfYear">
  1302. <summary>The FirstWeekOfYear enumeration contains constants used to identify how the first week of a year is determined when using the DateDiff and DatePart functions. These constants can be used anywhere in your code.
  1303. </summary>
  1304. </member>
  1305. <member name="T:Microsoft.VisualBasic.Globals">
  1306. <summary>The Global module contains script engine functions.
  1307. </summary>
  1308. </member>
  1309. <member name="P:Microsoft.VisualBasic.Globals.ScriptEngine">
  1310. <summary>Returns a string representing the scripting language in use.
  1311. </summary>
  1312. </member>
  1313. <member name="P:Microsoft.VisualBasic.Globals.ScriptEngineBuildVersion">
  1314. <summary>Returns the build version number of the scripting engine in use.
  1315. </summary>
  1316. </member>
  1317. <member name="P:Microsoft.VisualBasic.Globals.ScriptEngineMajorVersion">
  1318. <summary>Returns the major version number of the scripting engine in use.
  1319. </summary>
  1320. </member>
  1321. <member name="P:Microsoft.VisualBasic.Globals.ScriptEngineMinorVersion">
  1322. <summary>Returns the minor version number of the scripting engine in use.
  1323. </summary>
  1324. </member>
  1325. <member name="T:Microsoft.VisualBasic.Information">
  1326. <summary>The Information module contains the procedures used to return, test for, or verify information.
  1327. </summary>
  1328. </member>
  1329. <member name="M:Microsoft.VisualBasic.Information.Err">
  1330. <summary>Returns an ErrObject containing details of the last error.
  1331. </summary>
  1332. </member>
  1333. <member name="M:Microsoft.VisualBasic.Information.IsArray(System.Object)">
  1334. <summary>Returns a Boolean value indicating whether a variable contains to an array.
  1335. </summary>
  1336. </member>
  1337. <member name="M:Microsoft.VisualBasic.Information.IsDate(System.Object)">
  1338. <summary>Returns a Boolean value indicating whether an expression can be converted to a date.
  1339. </summary>
  1340. </member>
  1341. <member name="M:Microsoft.VisualBasic.Information.IsDBNull(System.Object)">
  1342. <summary>Returns a Boolean value indicating whether an expression evaluates to the Null value returned from a database.
  1343. </summary>
  1344. </member>
  1345. <member name="M:Microsoft.VisualBasic.Information.IsError(System.Object)">
  1346. <summary>Returns a Boolean value indicating whether an expression is an exception type.
  1347. </summary>
  1348. </member>
  1349. <member name="M:Microsoft.VisualBasic.Information.IsNothing(System.Object)">
  1350. <summary>Returns a Boolean value indicating whether an expression has no value assigned to it.
  1351. </summary>
  1352. </member>
  1353. <member name="M:Microsoft.VisualBasic.Information.IsNumeric(System.Object)">
  1354. <summary>Returns a Boolean value indicating whether an expression can be evaluated as a number.
  1355. </summary>
  1356. </member>
  1357. <member name="M:Microsoft.VisualBasic.Information.IsReference(System.Object)">
  1358. <summary>Returns a Boolean value indicating whether an expression evaluates to a reference type.
  1359. </summary>
  1360. </member>
  1361. <member name="M:Microsoft.VisualBasic.Information.LBound(System.Array,System.Int32)">
  1362. <summary>Returns the lowest available subscript for the indicated dimension of an array.
  1363. </summary>
  1364. <param name="Array">The array in which you want to find the lowest possible subscript of a dimension.
  1365. </param>
  1366. <param name="Rank">The dimension for which the lowest possible subscript is to be returned. Use 1 for the first dimension, 2 for the second, and so on.
  1367. </param>
  1368. </member>
  1369. <member name="M:Microsoft.VisualBasic.Information.QBColor(System.Int32)">
  1370. <summary>Returns an integer value representing the RGB color code corresponding to the specified color number.
  1371. </summary>
  1372. <param name="color">A whole number in the range 0–15.
  1373. </param>
  1374. </member>
  1375. <member name="M:Microsoft.VisualBasic.Information.RGB(System.Int32,System.Int32,System.Int32)">
  1376. <summary>Returns an integer value representing an RGB color value from a set of red, green and blue color components.
  1377. </summary>
  1378. <param name="red">Integer in the range 0–255, inclusive, that represents the intensity of the red component of the color.
  1379. </param>
  1380. <param name="green">Integer in the range 0–255, inclusive, that represents the intensity of the green component of the color.
  1381. </param>
  1382. <param name="blue">Integer in the range 0–255, inclusive, that represents the intensity of the blue component of the color.
  1383. </param>
  1384. </member>
  1385. <member name="M:Microsoft.VisualBasic.Information.SystemTypeName(System.String)">
  1386. <summary>Returns the system type name corresponding to a Visual Basic type name.
  1387. <param name="VBName">Name of the Visual Basic Type.
  1388. </param>
  1389. </summary>
  1390. </member>
  1391. <member name="M:Microsoft.VisualBasic.Information.UBound(System.Array,System.Int32)">
  1392. <summary>Returns the highest available subscript for the indicated dimension of an array.
  1393. </summary>
  1394. <param name="Array">The array in which you want to find the highest possible subscript of a dimension.
  1395. </param>
  1396. <param name="Rank">The dimension for which the highest possible subscript is to be returned. Use 1 for the first dimension, 2 for the second, and so on.
  1397. </param>
  1398. </member>
  1399. <member name="T:Microsoft.VisualBasic.Interaction">
  1400. <summary>The Interaction module contains procedures used to interact with objects, applications, and systems.
  1401. </summary>
  1402. </member>
  1403. <member name="M:Microsoft.VisualBasic.Interaction.AppActivate(System.Int32)">
  1404. <param name="ProcessID">specifying the Win32 Process ID number assigned to this process.
  1405. </param>
  1406. <summary>Activates an application window.
  1407. </summary>
  1408. </member>
  1409. <member name="M:Microsoft.VisualBasic.Interaction.AppActivate(System.String)">
  1410. <param name="Title">expression specifying the title in the title bar of the application window you want to activate. You can use the task ID returned by the Shell function.
  1411. </param>
  1412. <summary>Activates an application window.
  1413. </summary>
  1414. </member>
  1415. <member name="M:Microsoft.VisualBasic.Interaction.Beep">
  1416. <summary>Sounds a tone through the computer's speaker.
  1417. </summary>
  1418. </member>
  1419. <member name="M:Microsoft.VisualBasic.Interaction.CallByName(System.Object,System.String,Microsoft.VisualBasic.CallType,System.Object[])">
  1420. <summary>Executes a method on an object, or sets or returns a property on an object.
  1421. </summary>
  1422. <param name="ObjectRef">Object. A pointer to the object exposing the property or method.
  1423. </param>
  1424. <param name="ProcName">String. A string expression containing the name of the property or method on the object.
  1425. </param>
  1426. <param name="UseCallType">An enumeration member of type Microsoft.VisualBasic.CallType representing the type of procedure being called. The value of CallType can be Method, Get, or Set.
  1427. </param>
  1428. <param name="Args">ParamArray. A parameter array containing the arguments to be passed to the property or method being called.
  1429. </param>
  1430. </member>
  1431. <member name="M:Microsoft.VisualBasic.Interaction.Choose(System.Double,System.Object[])">
  1432. <summary>Selects and returns a value from a list of arguments.
  1433. </summary>
  1434. <param name="Index">Double. Numeric expression that results in a value between 1 and the number of elements passed in the Choice argument.
  1435. </param>
  1436. <param name="Choice">Object parameter array. You can supply either a single variable or an expression that evaluates to the Object data type, to a list of Object variables or expressions separated by commas, or to a single-dimensional array of Object elements.
  1437. </param>
  1438. </member>
  1439. <member name="M:Microsoft.VisualBasic.Interaction.Command">
  1440. <summary>Returns the argument portion of the command line used to launch Visual Basic or an executable program developed with Visual Basic.
  1441. </summary>
  1442. </member>
  1443. <member name="M:Microsoft.VisualBasic.Interaction.CreateObject(System.String,System.String)">
  1444. <summary>Creates and returns a reference to a COM object. CreateObject cannot be used to create instances of classes in Visual Basic unless those classes are explicitly exposed as ActiveX objects.
  1445. </summary>
  1446. <param name="ProgId">String. The program ID of the object to create.
  1447. </param>
  1448. <param name="ServerName">String. The name of the network server where the object will be created. If ServerName is an empty string (""), the local machine is used.
  1449. </param>
  1450. </member>
  1451. <member name="M:Microsoft.VisualBasic.Interaction.DeleteSetting(System.String,System.String,System.String)">
  1452. <param name="AppName">String expression containing the name of the application or project to which the section or key setting applies.
  1453. </param>
  1454. <param name="Section">String expression containing the name of the section from which the key setting is being deleted. If only AppName and Section are provided, the specified section is deleted along with all related key settings.
  1455. </param>
  1456. <param name="Key">String expression containing the name of the key setting being deleted.
  1457. </param>
  1458. <summary>Deletes a section or key setting from an application's entry in the Windows registry.
  1459. </summary>
  1460. </member>
  1461. <member name="M:Microsoft.VisualBasic.Interaction.Environ(System.Int32)">
  1462. <summary>Returns the string associated with an operating system environment variable.
  1463. </summary>
  1464. <param name="Expression">Expression that evaluates to either a string containing the name of an environment variable, or an integer corresponding to the numeric order of an environment string in the environment-string table.
  1465. </param>
  1466. </member>
  1467. <member name="M:Microsoft.VisualBasic.Interaction.Environ(System.String)">
  1468. <summary>Returns the string associated with an operating system environment variable.
  1469. </summary>
  1470. <param name="Expression">Expression that evaluates to either a string containing the name of an environment variable, or an integer corresponding to the numeric order of an environment string in the environment-string table.
  1471. </param>
  1472. </member>
  1473. <member name="M:Microsoft.VisualBasic.Interaction.GetAllSettings(System.String,System.String)">
  1474. <summary>Returns a list of key settings and their respective values (originally created with SaveSetting) from an application's entry in the Windows registry.
  1475. </summary>
  1476. <param name="AppName">String expression containing the name of the application or project whose key settings are requested.
  1477. </param>
  1478. <param name="Section">String expression containing the name of the section whose key settings are requested. GetAllSettings returns an object that contains a two-dimensional array of strings. The strings contain all the key settings in the specified section plus their corresponding values.
  1479. </param>
  1480. </member>
  1481. <member name="M:Microsoft.VisualBasic.Interaction.GetObject(System.String,System.String)">
  1482. <summary>Returns a reference to an object provided by a COM component.
  1483. </summary>
  1484. <param name="pathname">String. The full path and name of the file containing the object to retrieve. If pathname is omitted, class is required.
  1485. </param>
  1486. <param name="class">String. A string representing the class of the object.
  1487. </param>
  1488. </member>
  1489. <member name="M:Microsoft.VisualBasic.Interaction.GetSetting(System.String,System.String,System.String,System.String)">
  1490. <summary>Returns a key setting value from an application's entry in the Windows registry.
  1491. </summary>
  1492. <param name="AppName">String expression containing the name of the application or project whose key setting is requested.
  1493. </param>
  1494. <param name="Section">String expression containing the name of the section in which the key setting is found.
  1495. </param>
  1496. <param name="Key">String expression containing the name of the key setting to return.
  1497. </param>
  1498. <param name="Default">Expression containing the value to return if no value is set in the Key setting. If omitted, Default is assumed to be a zero-length string ("").
  1499. </param>
  1500. </member>
  1501. <member name="M:Microsoft.VisualBasic.Interaction.IIf(System.Boolean,System.Object,System.Object)">
  1502. <summary>Returns one of two objects, depending on the evaluation of an expression.
  1503. </summary>
  1504. <param name="Expression">Boolean. The expression you want to evaluate.
  1505. </param>
  1506. <param name="TruePart">Object. Returned if Expression evaluates to True.
  1507. </param>
  1508. <param name="FalsePart">Object. Returned if Expression evaluates to False.
  1509. </param>
  1510. </member>
  1511. <member name="M:Microsoft.VisualBasic.Interaction.InputBox(System.String,System.String,System.String,System.Int32,System.Int32)">
  1512. <summary>Displays a prompt in a dialog box, waits for the user to input text or click a button, and then returns a string containing the contents of the text box.
  1513. </summary>
  1514. <param name="Prompt">String expression displayed as the message in the dialog box. The maximum length of Prompt is approximately 1024 characters, depending on the width of the characters used. If Prompt consists of more than one line, you can separate the lines using a carriage return character (Chr(13)), a linefeed character (Chr(10)), or a carriage return–linefeed character combination between each line.
  1515. </param>
  1516. <param name="Title">String expression displayed in the title bar of the dialog box. If you omit Title, the application name is placed in the title bar.
  1517. </param>
  1518. <param name="DefaultResponse">String expression displayed in the text box as the default response if no other input is provided. If you omit DefaultResponse, the displayed text box is empty.
  1519. </param>
  1520. <param name="XPos">Numeric expression that specifies, in twips, the distance of the left edge of the dialog box from the left edge of the screen. If you omit XPos, the dialog box is centered horizontally.
  1521. </param>
  1522. <param name="YPos">Numeric expression that specifies, in twips, the distance of the upper edge of the dialog box from the top of the screen. If you omit YPos, the dialog box is positioned vertically approximately one-third of the way down the screen.
  1523. </param>
  1524. </member>
  1525. <member name="M:Microsoft.VisualBasic.Interaction.MsgBox(System.Object,Microsoft.VisualBasic.MsgBoxStyle,System.Object)">
  1526. <summary>Displays a message in a dialog box, waits for the user to click a button, and then returns an integer indicating which button the user clicked.
  1527. </summary>
  1528. <param name="Prompt">String expression displayed as the message in the dialog box. The maximum length of Prompt is approximately 1024 characters, depending on the width of the characters used. If Prompt consists of more than one line, you can separate the lines using a carriage return character (Chr(13)), a linefeed character (Chr(10)), or a carriage return-linefeed character combination between each line.
  1529. </param>
  1530. <param name="Buttons">Numeric expression that is the sum of values specifying the number and type of buttons to display, the icon style to use, the identity of the default button, and the modality of the message box. If you omit Buttons, the default value is zero.
  1531. </param>
  1532. <param name="Title">String expression displayed in the title bar of the dialog box. If you omit Title, the application name is placed in the title bar.
  1533. </param>
  1534. </member>
  1535. <member name="M:Microsoft.VisualBasic.Interaction.Partition(System.Int64,System.Int64,System.Int64,System.Int64)">
  1536. <summary>Returns a string representing the calculated range that contains a number.
  1537. </summary>
  1538. <param name="Number">Long. Whole number that you want to locate within one of the calculated ranges.
  1539. </param>
  1540. <param name="Start">Long. Whole number that indicates the start of the set of calculated ranges. Start cannot be less than 0.
  1541. </param>
  1542. <param name="Stop">Long. Whole number that indicates the end of the set of calculated ranges. Stop cannot be less than or equal to Start.
  1543. </param>
  1544. <param name="Interval">Long. Whole number that indicates the size of each range calculated between Start and Stop. Interval cannot be less than 1.
  1545. </param>
  1546. </member>
  1547. <member name="M:Microsoft.VisualBasic.Interaction.SaveSetting(System.String,System.String,System.String,System.String)">
  1548. <param name="AppName">String expression containing the name of the application or project to which the setting applies.
  1549. </param>
  1550. <param name="Section">String expression containing the name of the section in which the key setting is being saved.
  1551. </param>
  1552. <param name="Key">String expression containing the name of the key setting being saved.
  1553. </param>
  1554. <param name="Setting">Expression containing the value to which Key is being set.
  1555. </param>
  1556. <summary>Saves or creates an application entry in the Windows registry.
  1557. </summary>
  1558. </member>
  1559. <member name="M:Microsoft.VisualBasic.Interaction.Shell(System.String,Microsoft.VisualBasic.AppWinStyle,System.Boolean,System.Int32)">
  1560. <summary>Runs an executable program and returns an integer containing the program's process ID if it is still running.
  1561. </summary>
  1562. <param name="Pathname">String. Name of the program to execute, together with any required arguments and command-line switches. Pathname can also include the drive and the directory path or folder.
  1563. </param>
  1564. <param name="Style">AppWinStyle. A value chosen from the AppWinStyle enumeration corresponding to the style of the window in which the program is to be run. If Style is omitted, Shell uses AppWinStyle.MinimizedFocus, which starts the program minimized and with focus.
  1565. </param>
  1566. <param name="Wait">A value indicating whether the Shell function should wait for completion of the program. If Wait is omitted, Shell uses False.
  1567. </param>
  1568. <param name="Timeout">The number of milliseconds to wait for completion if Wait is True. If Timeout is omitted, Shell uses -1, which means there is no timeout and Shell does not return until the program completes. Therefore, if you omit Timeout or set it to -1, it is possible that Shell might never return control to your program.
  1569. </param>
  1570. </member>
  1571. <member name="M:Microsoft.VisualBasic.Interaction.Switch(System.Object[])">
  1572. <summary>Evaluates a list of expressions and returns an Object value of an expression associated with the first expression in the list that is True.
  1573. </summary>
  1574. <param name="VarExpr">Object parameter array. Must have an even number of elements. You can supply a list of Object variables or expressions separated by commas, or a single-dimensional array of Object elements.
  1575. </param>
  1576. </member>
  1577. <member name="T:Microsoft.VisualBasic.MsgBoxResult">
  1578. <summary>The MsgBoxResult enumeration contains constants used to identify which button was pressed on a message box displayed using the MsgBox function. These constants can be used anywhere in your code.
  1579. </summary>
  1580. </member>
  1581. <member name="T:Microsoft.VisualBasic.MsgBoxStyle">
  1582. <summary>The MsgBoxStyle enumeration contains constants used to specify the behavior of a message box, along with symbols and buttons that appear on it, when displayed using the MsgBox function. These constants can be used anywhere in your code.
  1583. </summary>
  1584. </member>
  1585. <member name="T:Microsoft.VisualBasic.OpenAccess">
  1586. <summary>The OpenAccess enumeration defines constants used to identify file access.
  1587. </summary>
  1588. </member>
  1589. <member name="T:Microsoft.VisualBasic.OpenMode">
  1590. <summary>The OpenMode enumeration defines constants used to identify file access modes.
  1591. </summary>
  1592. </member>
  1593. <member name="T:Microsoft.VisualBasic.OpenShare">
  1594. <summary>The OpenShare enumeration defines constants used to identify file sharing.
  1595. </summary>
  1596. </member>
  1597. <member name="T:Microsoft.VisualBasic.Strings">
  1598. <summary>The Strings module contains procedures used to perform string operations.
  1599. </summary>
  1600. </member>
  1601. <member name="M:Microsoft.VisualBasic.Strings.Asc(System.Char)">
  1602. <summary>Returns an Integer representing the character code corresponding to the first letter in a string.
  1603. </summary>
  1604. <param name="String">Any valid Char or String expression. If String is Nothing or contains no characters, an ArgumentException error occurs.
  1605. </param>
  1606. </member>
  1607. <member name="M:Microsoft.VisualBasic.Strings.Asc(System.String)">
  1608. <summary>Returns an Integer representing the character code corresponding to the first letter in a string.
  1609. </summary>
  1610. <param name="String">Any valid Char or String expression. If String is Nothing or contains no characters, an ArgumentException error occurs.
  1611. </param>
  1612. </member>
  1613. <member name="M:Microsoft.VisualBasic.Strings.AscW(System.Char)">
  1614. <summary>Returns an Integer representing the character code corresponding to the first letter in a string.
  1615. </summary>
  1616. <param name="String">Any valid Char or String expression. If String is Nothing or contains no characters, an ArgumentException error occurs.
  1617. </param>
  1618. </member>
  1619. <member name="M:Microsoft.VisualBasic.Strings.AscW(System.String)">
  1620. <summary>Returns an Integer representing the character code corresponding to the first letter in a string.
  1621. </summary>
  1622. <param name="String">Any valid Char or String expression. If String is Nothing or contains no characters, an ArgumentException error occurs.
  1623. </param>
  1624. </member>
  1625. <member name="M:Microsoft.VisualBasic.Strings.Chr(System.Int32)">
  1626. <summary>Returns the character associated with the specified character code as a Char data type.
  1627. </summary>
  1628. <param name="Charcode">An integer that identifies a character.
  1629. </param>
  1630. </member>
  1631. <member name="M:Microsoft.VisualBasic.Strings.ChrW(System.Int32)">
  1632. <summary>Returns the character associated with the specified character code as a Char data type.
  1633. </summary>
  1634. <param name="Charcode">An integer that identifies a character.
  1635. </param>
  1636. </member>
  1637. <member name="M:Microsoft.VisualBasic.Strings.Filter(System.Object[],System.String,System.Boolean,Microsoft.VisualBasic.CompareMethod)">
  1638. <summary>Returns a zero-based array containing a subset of a String array based on specified filter criteria.
  1639. </summary>
  1640. <param name="Source">One-dimensional array of strings to be searched.
  1641. </param>
  1642. <param name="Match">String to search for.
  1643. </param>
  1644. <param name="Include">Boolean value indicating whether to return substrings that include or exclude Match. If Include is True, the Filter function returns the subset of the array that contains Match as a substring. If Include is False, the Filter function returns the subset of the array that does not contain Match as a substring.
  1645. </param>
  1646. <param name="Compare">Numeric value indicating the kind of string comparison to use. See Settings for values.
  1647. </param>
  1648. </member>
  1649. <member name="M:Microsoft.VisualBasic.Strings.Filter(System.String[],System.String,System.Boolean,Microsoft.VisualBasic.CompareMethod)">
  1650. <summary>Returns a zero-based array containing a subset of a String array based on specified filter criteria.
  1651. </summary>
  1652. <param name="Source">One-dimensional array of strings to be searched.
  1653. </param>
  1654. <param name="Match">String to search for.
  1655. </param>
  1656. <param name="Include">Boolean value indicating whether to return substrings that include or exclude Match. If Include is True, the Filter function returns the subset of the array that contains Match as a substring. If Include is False, the Filter function returns the subset of the array that does not contain Match as a substring.
  1657. </param>
  1658. <param name="Compare">Numeric value indicating the kind of string comparison to use. See Settings for values.
  1659. </param>
  1660. </member>
  1661. <member name="M:Microsoft.VisualBasic.Strings.Format(System.Object,System.String)">
  1662. <summary>Returns a String expression formatted according to instructions contained in a format String expression.
  1663. </summary>
  1664. <param name="Expression">Any valid expression.
  1665. </param>
  1666. <param name="Style">A valid named or user-defined format String expression.
  1667. </param>
  1668. </member>
  1669. <member name="M:Microsoft.VisualBasic.Strings.FormatCurrency(System.Object,System.Int32,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState)">
  1670. <summary>Returns an expression formatted as a currency value using the currency symbol defined in the system control panel.
  1671. </summary>
  1672. <param name="Expression">Expression to be formatted.
  1673. </param>
  1674. <param name="NumDigitsAfterDecimal">Numeric value indicating how many places are displayed to the right of the decimal. Default value is –1, which indicates that the computer's regional settings are used.
  1675. </param>
  1676. <param name="IncludeLeadingDigit">Tristate constant that indicates whether or not a leading zero is displayed for fractional values. See Settings for values.
  1677. </param>
  1678. <param name="UseParensForNegativeNumbers">Tristate constant that indicates whether or not to place negative values within parentheses. See Settings for values.
  1679. </param>
  1680. <param name="GroupDigits">Tristate constant that indicates whether or not numbers are grouped using the group delimiter specified in the computer's regional settings. See Settings for values.
  1681. </param>
  1682. </member>
  1683. <member name="M:Microsoft.VisualBasic.Strings.FormatDateTime(System.DateTime,Microsoft.VisualBasic.DateFormat)">
  1684. <summary>Returns an expression formatted as a date or time.
  1685. </summary>
  1686. <param name="Expression">Date expression to be formatted.
  1687. </param>
  1688. <param name="NamedFormat">Numeric value that indicates the date or time format used. If omitted, GeneralDate is used.
  1689. </param>
  1690. </member>
  1691. <member name="M:Microsoft.VisualBasic.Strings.FormatNumber(System.Object,System.Int32,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState)">
  1692. <summary>Returns an expression formatted as a number.
  1693. </summary>
  1694. <param name="Expression">Expression to be formatted.
  1695. </param>
  1696. <param name="NumDigitsAfterDecimal">Numeric value indicating how many places are displayed to the right of the decimal. The default value is –1, which indicates that the computer's regional settings are used.
  1697. </param>
  1698. <param name="IncludeLeadingDigit">Tristate constant that indicates whether a leading zero is displayed for fractional values. See Settings for values.
  1699. </param>
  1700. <param name="UseParensForNegativeNumbers">Tristate constant that indicates whether to place negative values within parentheses. See Settings for values.
  1701. </param>
  1702. <param name="GroupDigits">Tristate constant that indicates whether or not numbers are grouped using the group delimiter specified in the locale settings. See Settings for values.
  1703. </param>
  1704. </member>
  1705. <member name="M:Microsoft.VisualBasic.Strings.FormatPercent(System.Object,System.Int32,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState,Microsoft.VisualBasic.TriState)">
  1706. <summary>Returns an expression formatted as a percentage (that is, multiplied by 100) with a trailing % character.
  1707. </summary>
  1708. <param name="Expression">Expression to be formatted.
  1709. </param>
  1710. <param name="NumDigitsAfterDecimal">Numeric value indicating how many places to the right of the decimal are displayed. Default value is –1, which indicates that the locale settings are used.
  1711. </param>
  1712. <param name="IncludeLeadingDigit">Tristate constant that indicates whether or not a leading zero is displayed for fractional values. See Settings for values.
  1713. </param>
  1714. <param name="UseParensForNegativeNumbers">Tristate constant that indicates whether or not to place negative values within parentheses. See Settings for values.
  1715. </param>
  1716. <param name="GroupDigits">Tristate constant that indicates whether or not numbers are grouped using the group delimiter specified in the locale settings. See Settings for values.
  1717. </param>
  1718. </member>
  1719. <member name="M:Microsoft.VisualBasic.Strings.InStr(System.Int32,System.String,System.String,Microsoft.VisualBasic.CompareMethod)">
  1720. <summary>Returns an Integer specifying the start position of the first occurrence of one string within another.
  1721. </summary>
  1722. <param name="Start">Numeric expression that sets the starting position for each search. If omitted, search begins at the first character position. The start index is 1 based.
  1723. </param>
  1724. <param name="String1">String expression being searched.
  1725. </param>
  1726. <param name="String2">String expression sought.
  1727. </param>
  1728. <param name="Compare">Specifies the type of string comparison. If Compare is omitted, the Option Compare setting determines the type of comparison. Specify a valid LCID (LocaleID) to use locale-specific rules in the comparison.
  1729. </param>
  1730. </member>
  1731. <member name="M:Microsoft.VisualBasic.Strings.InStr(System.String,System.String,Microsoft.VisualBasic.CompareMethod)">
  1732. <summary>Returns an Integer specifying the start position of the first occurrence of one string within another.
  1733. </summary>
  1734. <param name="String1">String expression being searched.
  1735. </param>
  1736. <param name="String2">String expression sought.
  1737. </param>
  1738. <param name="Compare">Specifies the type of string comparison. If Compare is omitted, the Option Compare setting determines the type of comparison. Specify a valid LCID (LocaleID) to use locale-specific rules in the comparison.
  1739. </param>
  1740. </member>
  1741. <member name="M:Microsoft.VisualBasic.Strings.InStrRev(System.String,System.String,System.Int32,Microsoft.VisualBasic.CompareMethod)">
  1742. <summary>Returns the position of the first occurrence of one string within another, starting from the right side of the string.
  1743. </summary>
  1744. <param name="StringCheck">String expression being searched.
  1745. </param>
  1746. <param name="StringMatch">String expression being searched for.
  1747. </param>
  1748. <param name="Start">Numeric expression that sets the one-based starting position for each search, starting from the left side of the string. If Start is omitted, –1 is used, which means that the search begins at the last character position. Search then proceeds from right to left.
  1749. </param>
  1750. <param name="Compare">Numeric value indicating the kind of comparison to use when evaluating substrings. If omitted, a binary comparison is performed. See Settings for values.
  1751. </param>
  1752. </member>
  1753. <member name="M:Microsoft.VisualBasic.Strings.Join(System.Object[],System.String)">
  1754. <summary>Returns a string created by joining a number of substrings contained in an array.
  1755. </summary>
  1756. <param name="SourceArray">One-dimensional array containing substrings to be joined.
  1757. </param>
  1758. <param name="Delimiter">String used to separate the substrings in the returned string. If omitted, the space character (" ") is used. If Delimiter is a zero-length string (""), all items in the list are concatenated with no delimiters.
  1759. </param>
  1760. </member>
  1761. <member name="M:Microsoft.VisualBasic.Strings.Join(System.String[],System.String)">
  1762. <summary>Returns a string created by joining a number of substrings contained in an array.
  1763. </summary>
  1764. <param name="SourceArray">One-dimensional array containing substrings to be joined.
  1765. </param>
  1766. <param name="Delimiter">String used to separate the substrings in the returned string. If omitted, the space character (" ") is used. If Delimiter is a zero-length string (""), all items in the list are concatenated with no delimiters.
  1767. </param>
  1768. </member>
  1769. <member name="M:Microsoft.VisualBasic.Strings.LCase(System.Char)">
  1770. <summary>Returns a String or Char that has been converted to lowercase.
  1771. </summary>
  1772. <param name="Value">Any valid String or Char expression.
  1773. </param>
  1774. </member>
  1775. <member name="M:Microsoft.VisualBasic.Strings.LCase(System.String)">
  1776. <summary>Returns a String or Char that has been converted to lowercase.
  1777. </summary>
  1778. <param name="Value">Any valid String or Char expression.
  1779. </param>
  1780. </member>
  1781. <member name="M:Microsoft.VisualBasic.Strings.Left(System.String,System.Int32)">
  1782. <summary>Returns a String containing a specified number of characters from the left side of a string.
  1783. </summary>
  1784. <param name="Str">String expression from which the leftmost characters are returned.
  1785. </param>
  1786. <param name="Length">Integer expression. Numeric expression indicating how many characters to return. If 0, a zero-length string ("") is returned. If greater than or equal to the number of characters in Str, the entire string is returned.
  1787. </param>
  1788. </member>
  1789. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Boolean)">
  1790. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1791. </summary>
  1792. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1793. </param>
  1794. </member>
  1795. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Byte)">
  1796. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1797. </summary>
  1798. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1799. </param>
  1800. </member>
  1801. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Char)">
  1802. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1803. </summary>
  1804. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1805. </param>
  1806. </member>
  1807. <member name="M:Microsoft.VisualBasic.Strings.Len(System.DateTime)">
  1808. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1809. </summary>
  1810. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1811. </param>
  1812. </member>
  1813. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Decimal)">
  1814. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1815. </summary>
  1816. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1817. </param>
  1818. </member>
  1819. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Double)">
  1820. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1821. </summary>
  1822. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1823. </param>
  1824. </member>
  1825. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Int16)">
  1826. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1827. </summary>
  1828. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1829. </param>
  1830. </member>
  1831. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Int32)">
  1832. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1833. </summary>
  1834. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1835. </param>
  1836. </member>
  1837. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Int64)">
  1838. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1839. </summary>
  1840. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1841. </param>
  1842. </member>
  1843. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Object)">
  1844. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1845. </summary>
  1846. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1847. </param>
  1848. </member>
  1849. <member name="M:Microsoft.VisualBasic.Strings.Len(System.Single)">
  1850. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1851. </summary>
  1852. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1853. </param>
  1854. </member>
  1855. <member name="M:Microsoft.VisualBasic.Strings.Len(System.String)">
  1856. <summary>Returns an Integer containing either the number of characters in a string or the number of bytes required to store a variable.
  1857. </summary>
  1858. <param name="Expression">valid String expression or variable name. If Expression is of type Object, the Len function returns the size as it will be written to the file.
  1859. </param>
  1860. </member>
  1861. <member name="M:Microsoft.VisualBasic.Strings.LSet(System.String,System.Int32)">
  1862. <summary>Returns a left-aligned string containing the specified string adjusted to the specified length.
  1863. </summary>
  1864. </member>
  1865. <member name="M:Microsoft.VisualBasic.Strings.LTrim(System.String)">
  1866. <summary>Returns a string containing a copy of a specified string with no leading spaces (LTrim), no trailing spaces (RTrim), or no leading or trailing spaces (Trim).
  1867. </summary>
  1868. <param name="Str">Any valid String expression.
  1869. </param>
  1870. </member>
  1871. <member name="M:Microsoft.VisualBasic.Strings.Mid(System.String,System.Int32)">
  1872. <summary>Replaces a specified number of characters in a String variable with characters from another string.
  1873. </summary>
  1874. <param name="str">Name of the String variable to modify.
  1875. </param>
  1876. <param name="Start">Integer data type. Character position in target where the replacement of text begins. Start uses a one based index.
  1877. </param>
  1878. </member>
  1879. <member name="M:Microsoft.VisualBasic.Strings.Mid(System.String,System.Int32,System.Int32)">
  1880. <summary>Replaces a specified number of characters in a String variable with characters from another string.
  1881. </summary>
  1882. <param name="str">Name of the String variable to modify.
  1883. </param>
  1884. <param name="Start">Integer data type. Character position in target where the replacement of text begins. Start uses a one based index.
  1885. </param>
  1886. <param name="Length">Integer data type. Number of characters to replace. If omitted, all of string is used.
  1887. </param>
  1888. </member>
  1889. <member name="M:Microsoft.VisualBasic.Strings.Replace(System.String,System.String,System.String,System.Int32,System.Int32,Microsoft.VisualBasic.CompareMethod)">
  1890. <summary>Returns a string in which a specified substring has been replaced with another substring a specified number of times.
  1891. </summary>
  1892. <param name="Expression">String expression containing substring to replace.
  1893. </param>
  1894. <param name="Find">Substring being searched for.
  1895. </param>
  1896. <param name="Replacement">Replacement substring.
  1897. </param>
  1898. <param name="Start">Position within Expression where substring search is to begin. If omitted, 1 is assumed.
  1899. </param>
  1900. <param name="Count">Number of substring substitutions to perform. If omitted, the default value is –1, which means make all possible substitutions.
  1901. </param>
  1902. <param name="Compare">Numeric value indicating the kind of comparison to use when evaluating substrings. See Settings for values.
  1903. </param>
  1904. </member>
  1905. <member name="M:Microsoft.VisualBasic.Strings.Right(System.String,System.Int32)">
  1906. <summary>Returns a String containing a specified number of characters from the right side of a string.
  1907. </summary>
  1908. <param name="Str">String expression from which the rightmost characters are returned.
  1909. </param>
  1910. <param name="Length">Integer. Numeric expression indicating how many characters to return. If 0, a zero-length string ("") is returned. If greater than or equal to the number of characters in Str, the entire string is returned.
  1911. </param>
  1912. </member>
  1913. <member name="M:Microsoft.VisualBasic.Strings.RSet(System.String,System.Int32)">
  1914. <summary>This example demonstrates the use of the RSet function.
  1915. </summary>
  1916. </member>
  1917. <member name="M:Microsoft.VisualBasic.Strings.RTrim(System.String)">
  1918. <summary>Returns a string containing a copy of a specified string with no leading spaces (LTrim), no trailing spaces (RTrim), or no leading or trailing spaces (Trim).
  1919. </summary>
  1920. <param name="Str">Any valid String expression.
  1921. </param>
  1922. </member>
  1923. <member name="M:Microsoft.VisualBasic.Strings.Space(System.Int32)">
  1924. <summary>Returns a string consisting of the specified number of spaces.
  1925. </summary>
  1926. <param name="Number">Integer data type. The number of spaces you want in the string.
  1927. </param>
  1928. </member>
  1929. <member name="M:Microsoft.VisualBasic.Strings.Split(System.String,System.String,System.Int32,Microsoft.VisualBasic.CompareMethod)">
  1930. <summary>Returns a zero-based, one-dimensional array containing a specified number of substrings.
  1931. </summary>
  1932. <param name="Expression">String expression containing substrings and delimiters. If Expression is a zero-length string (""), the Split function returns an array with no elements and no data.
  1933. </param>
  1934. <param name="Delimiter">Single character used to identify substring limits. If Delimiter is omitted, the space character (" ") is assumed to be the delimiter. If Delimiter is a zero-length string, a single-element array containing the entire Expression string is returned.
  1935. </param>
  1936. <param name="Limit">Number of substrings to be returned; the default, –1, indicates that all substrings are returned.
  1937. </param>
  1938. <param name="Compare">Numeric value indicating the comparison to use when evaluating substrings. See Settings for values.
  1939. </param>
  1940. </member>
  1941. <member name="M:Microsoft.VisualBasic.Strings.StrComp(System.String,System.String,Microsoft.VisualBasic.CompareMethod)">
  1942. <summary>Returns -1, 0, or 1, based on the result of a string comparison. The strings are compared by alphanumeric sort values begining with the first character.
  1943. </summary>
  1944. <param name="String1">Any valid String expression.
  1945. </param>
  1946. <param name="String2">Any valid String expression.
  1947. </param>
  1948. <param name="Compare">Specifies the type of string comparison. If compare is omitted, the Option Compare setting determines the type of comparison.
  1949. </param>
  1950. </member>
  1951. <member name="M:Microsoft.VisualBasic.Strings.StrConv(System.String,Microsoft.VisualBasic.VbStrConv,System.Int32)">
  1952. <summary>Returns a String converted as specified.
  1953. </summary>
  1954. <param name="Str">String expression to be converted.
  1955. </param>
  1956. <param name="Conversion">Microsoft.VisualBasic.VbStrConv. The enumeration value specifying the type of conversion to perform.
  1957. </param>
  1958. <param name="LocaleID">The LocaleID value, if different from the system LocaleID value. (The system LocaleID value is the default.)
  1959. </param>
  1960. </member>
  1961. <member name="M:Microsoft.VisualBasic.Strings.StrDup(System.Int32,System.Char)">
  1962. <summary>Returns a String or Object consisting of the specified character repeated the specified number of times.
  1963. </summary>
  1964. <param name="Number">Integer. The length to the string to be returned.
  1965. </param>
  1966. <param name="Character">Any valid Char, String, or Object expression. Only the first character of the expression will be used.
  1967. </param>
  1968. </member>
  1969. <member name="M:Microsoft.VisualBasic.Strings.StrDup(System.Int32,System.Object)">
  1970. <summary>Returns a String or Object consisting of the specified character repeated the specified number of times.
  1971. </summary>
  1972. <param name="Number">Integer. The length to the string to be returned.
  1973. </param>
  1974. <param name="Character">Any valid Char, String, or Object expression. Only the first character of the expression will be used.
  1975. </param>
  1976. </member>
  1977. <member name="M:Microsoft.VisualBasic.Strings.StrDup(System.Int32,System.String)">
  1978. <summary>Returns a String or Object consisting of the specified character repeated the specified number of times.
  1979. </summary>
  1980. <param name="Number">Integer. The length to the string to be returned.
  1981. </param>
  1982. <param name="Character">Any valid Char, String, or Object expression. Only the first character of the expression will be used.
  1983. </param>
  1984. </member>
  1985. <member name="M:Microsoft.VisualBasic.Strings.StrReverse(System.String)">
  1986. <summary>Returns a string in which the character order of a specified string is reversed.
  1987. </summary>
  1988. <param name="Expression">String expression whose characters are to be reversed. If Expression is a zero-length string (""), a zero-length string is returned.
  1989. </param>
  1990. </member>
  1991. <member name="M:Microsoft.VisualBasic.Strings.Trim(System.String)">
  1992. <summary>Returns a string containing a copy of a specified string with no leading spaces (LTrim), no trailing spaces (RTrim), or no leading or trailing spaces (Trim).
  1993. </summary>
  1994. <param name="Str">Any valid String expression.
  1995. </param>
  1996. </member>
  1997. <member name="M:Microsoft.VisualBasic.Strings.UCase(System.Char)">
  1998. <summary>Returns a String or Char containing the specified string converted to uppercase.
  1999. </summary>
  2000. <param name="Value">Any valid String or Char expression.
  2001. </param>
  2002. </member>
  2003. <member name="M:Microsoft.VisualBasic.Strings.UCase(System.String)">
  2004. <summary>Returns a String or Char containing the specified string converted to uppercase.
  2005. </summary>
  2006. <param name="Value">Any valid String or Char expression.
  2007. </param>
  2008. </member>
  2009. <member name="T:Microsoft.VisualBasic.TriState">
  2010. <summary>The TriState enumeration defines constants used to identify one of three possible states.
  2011. </summary>
  2012. </member>
  2013. <member name="T:Microsoft.VisualBasic.VariantType">
  2014. <summary>The VariantType enumeration defines constants used to possible variant types.
  2015. </summary>
  2016. </member>
  2017. <member name="T:Microsoft.VisualBasic.VBMath">
  2018. <summary>The VbMath module contains procedures used to perform mathematical operations.
  2019. </summary>
  2020. </member>
  2021. <member name="T:Microsoft.VisualBasic.VbStrConv">
  2022. <summary>The VbStrConv enumeration contains constants used to identify the type of string conversion to be performed by the StrConv function. These constants can be used anywhere in your code.
  2023. </summary>
  2024. </member>
  2025. <member name="T:Microsoft.VisualBasic.ComClassAttribute">
  2026. <summary>The ComClassAttribute can be applied to a class to expose its functionality to COM.
  2027. </summary>
  2028. </member>
  2029. <member name="M:Microsoft.VisualBasic.ComClassAttribute.#ctor">
  2030. <summary>Exposes the class to COM and automatically generates GUIDs for the classid, default interface and the events interface.
  2031. </summary>
  2032. </member>
  2033. <member name="M:Microsoft.VisualBasic.ComClassAttribute.#ctor(System.String)">
  2034. <summary>Exposes the class to COM. It uses the specified ClassID and automatically generates IIDs for the default interface and the events interface.
  2035. </summary>
  2036. <param name="_ClassID">The UUID for the ClassID for this class</param>
  2037. </member>
  2038. <member name="M:Microsoft.VisualBasic.ComClassAttribute.#ctor(System.String,System.String)">
  2039. <summary>Exposes the class to COM. It uses the specified ClassID and IID for the default interface and automatically generates an IID for the events interface.
  2040. </summary>
  2041. <param name="_ClassID">The GUID for the ClassID for this class</param>
  2042. <param name="_InterfaceID">The IID for the default interface for this class</param>
  2043. </member>
  2044. <member name="M:Microsoft.VisualBasic.ComClassAttribute.#ctor(System.String,System.String,System.String)">
  2045. <summary>Exposes the class to COM and uses the specified GUIDs for the ClassID, default interface and the events interface.
  2046. </summary>
  2047. <param name="_ClassID">The GUID for the ClassID for this class</param>
  2048. <param name="_InterfaceID">The IID for the default interface for this class</param>
  2049. <param name="_EventID">The IID for the events interface for this class</param>
  2050. </member>
  2051. <member name="M:Microsoft.VisualBasic.Conversion.ErrorToString">
  2052. <summary>Returns the error message for the last error
  2053. </summary>
  2054. </member>
  2055. <member name="M:Microsoft.VisualBasic.Conversion.ErrorToString(System.Int32)">
  2056. <summary>Returns the message for the specified error number
  2057. <param name="ErrorNumber">The Error number as an integer </param>
  2058. </summary>
  2059. </member>
  2060. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Array@,System.Int64,System.Boolean,System.Boolean)">
  2061. <summary>Reads data from an open disk file into a variable.</summary>
  2062. <param name="FileNumber">Any valid file number.</param>
  2063. <param name="Value">Array variable name into which data is read. </param>
  2064. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2065. <param name="ArrayIsDynamic">Specifies whether the array is to be treated as dynamic and so whether to read
  2066. an array descriptor describing the size and bounds of the array.</param>
  2067. <param name="StringIsFixedLength">Specifies whether any strings are to be treated as fixed length and so whether to read
  2068. a descriptor describing the size of the string.</param>
  2069. </member>
  2070. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Boolean@,System.Int64)">
  2071. <summary>Reads data from an open disk file into a variable.</summary>
  2072. <param name="FileNumber">Any valid file number.</param>
  2073. <param name="Value">Boolean variable name into which data is read. </param>
  2074. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2075. </member>
  2076. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Byte@,System.Int64)">
  2077. <summary>Reads data from an open disk file into a variable.</summary>
  2078. <param name="FileNumber">Any valid file number.</param>
  2079. <param name="Value">Byte variable name into which data is read. </param>
  2080. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2081. </member>
  2082. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Char@,System.Int64)">
  2083. <summary>Reads data from an open disk file into a variable.</summary>
  2084. <param name="FileNumber">Any valid file number.</param>
  2085. <param name="Value">Character variable name into which data is read. </param>
  2086. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2087. </member>
  2088. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.DateTime@,System.Int64)">
  2089. <summary>Reads data from an open disk file into a variable.</summary>
  2090. <param name="FileNumber">Any valid file number.</param>
  2091. <param name="Value">Date variable name into which data is read. </param>
  2092. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2093. </member>
  2094. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Decimal@,System.Int64)">
  2095. <summary>Reads data from an open disk file into a variable.</summary>
  2096. <param name="FileNumber">Any valid file number.</param>
  2097. <param name="Value">Decimal variable name into which data is read. </param>
  2098. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2099. </member>
  2100. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Double@,System.Int64)">
  2101. <summary>Reads data from an open disk file into a variable.</summary>
  2102. <param name="FileNumber">Any valid file number.</param>
  2103. <param name="Value">Double variable name into which data is read. </param>
  2104. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2105. </member>
  2106. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Int16@,System.Int64)">
  2107. <summary>Reads data from an open disk file into a variable.</summary>
  2108. <param name="FileNumber">Any valid file number.</param>
  2109. <param name="Value">Short variable name into which data is read. </param>
  2110. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2111. </member>
  2112. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Int32@,System.Int64)">
  2113. <summary>Reads data from an open disk file into a variable.</summary>
  2114. <param name="FileNumber">Any valid file number.</param>
  2115. <param name="Value">Integer variable name into which data is read. </param>
  2116. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2117. </member>
  2118. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Int64@,System.Int64)">
  2119. <summary>Reads data from an open disk file into a variable.</summary>
  2120. <param name="FileNumber">Any valid file number.</param>
  2121. <param name="Value">Long variable name into which data is read. </param>
  2122. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2123. </member>
  2124. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.Single@,System.Int64)">
  2125. <summary>Reads data from an open disk file into a variable.</summary>
  2126. <param name="FileNumber">Any valid file number.</param>
  2127. <param name="Value">Single variable name into which data is read. </param>
  2128. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2129. </member>
  2130. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.String@,System.Int64,System.Boolean)">
  2131. <summary>Reads data from an open disk file into a variable.</summary>
  2132. <param name="FileNumber">Any valid file number.</param>
  2133. <param name="Value">String variable name into which data is read. </param>
  2134. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2135. <param name="StringIsFixedLength">Specifies whether string is to be treated as fixed length and so whether to read
  2136. a descriptor describing the size of the string.</param>
  2137. </member>
  2138. <member name="M:Microsoft.VisualBasic.FileSystem.FileGet(System.Int32,System.ValueType@,System.Int64)">
  2139. <summary>Reads data from an open disk file into a variable.</summary>
  2140. <param name="FileNumber">Any valid file number.</param>
  2141. <param name="Value">Structure variable name into which data is read.</param>
  2142. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2143. </member>
  2144. <member name="M:Microsoft.VisualBasic.FileSystem.FileGetObject(System.Int32,System.Object@,System.Int64)">
  2145. <summary>Reads data from an open disk file into an object variable as if it were a variant</summary>
  2146. <param name="FileNumber">Any valid file number.</param>
  2147. <param name="Value">Object variable name into which data is read.</param>
  2148. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which reading begins.</param>
  2149. </member>
  2150. <member name="M:Microsoft.VisualBasic.FileSystem.FileOpen(System.Int32,System.String,Microsoft.VisualBasic.OpenMode,Microsoft.VisualBasic.OpenAccess,Microsoft.VisualBasic.OpenShare,System.Int32)">
  2151. <summary>Opens a file for input or output.</summary>
  2152. <param name="FileNumber">Any valid file number. Use the FreeFile function to obtain the next
  2153. available file number.</param>
  2154. <param name="FileName">Expression that specifies a file name — may include directory or folder, and
  2155. drive.</param>
  2156. <param name="Mode">Enum specifying the file mode.</param>
  2157. <param name="Access">Enum specifying the operations permitted on the open file.</param>
  2158. <param name="Share">Enum specifying the operations restricted on the open file by other processes</param>
  2159. <param name="RecordLength">For files opened for random access, this value is the record length. For
  2160. sequential files, this value is the number of characters buffered.</param>
  2161. </member>
  2162. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Array,System.Int64,System.Boolean,System.Boolean)">
  2163. <summary>Writes data from a variable to a disk file.</summary>
  2164. <param name="FileNumber">Any valid file number. </param>
  2165. <param name="Value">Variable name containing data to be written to disk. </param>
  2166. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2167. <param name="ArrayIsDynamic">Specifies whether the array is to be treated as dynamic, and whether to write an
  2168. array descriptor for the string describing the length.</param>
  2169. <param name="StringIsFixedLength">Specifies whether a string is to be treated as fixedlength, and whether to write a
  2170. descriptor for the string describing the length</param>
  2171. </member>
  2172. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Boolean,System.Int64)">
  2173. <summary>Writes data from a variable to a disk file.</summary>
  2174. <param name="FileNumber">Any valid file number. </param>
  2175. <param name="Value">Variable name containing data to be written to disk. </param>
  2176. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2177. </member>
  2178. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Byte,System.Int64)">
  2179. <summary>Writes data from a variable to a disk file.</summary>
  2180. <param name="FileNumber">Any valid file number. </param>
  2181. <param name="Value">Variable name containing data to be written to disk. </param>
  2182. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2183. </member>
  2184. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Char,System.Int64)">
  2185. <summary>Writes data from a variable to a disk file.</summary>
  2186. <param name="FileNumber">Any valid file number. </param>
  2187. <param name="Value">Variable name containing data to be written to disk. </param>
  2188. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2189. </member>
  2190. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.DateTime,System.Int64)">
  2191. <summary>Writes data from a variable to a disk file.</summary>
  2192. <param name="FileNumber">Any valid file number. </param>
  2193. <param name="Value">Variable name containing data to be written to disk. </param>
  2194. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2195. </member>
  2196. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Decimal,System.Int64)">
  2197. <summary>Writes data from a variable to a disk file.</summary>
  2198. <param name="FileNumber">Any valid file number. </param>
  2199. <param name="Value">Variable name containing data to be written to disk. </param>
  2200. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2201. </member>
  2202. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Double,System.Int64)">
  2203. <summary>Writes data from a variable to a disk file.</summary>
  2204. <param name="FileNumber">Any valid file number. </param>
  2205. <param name="Value">Variable name containing data to be written to disk. </param>
  2206. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2207. </member>
  2208. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Int16,System.Int64)">
  2209. <summary>Writes data from a variable to a disk file.</summary>
  2210. <param name="FileNumber">Any valid file number. </param>
  2211. <param name="Value">Value as System.Int16</param>
  2212. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2213. </member>
  2214. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Int32,System.Int64)">
  2215. <summary>Writes data from a variable to a disk file.</summary>
  2216. <param name="FileNumber">Any valid file number. </param>
  2217. <param name="Value">Value as System.Int32</param>
  2218. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2219. </member>
  2220. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Int64,System.Int64)">
  2221. <summary>Writes data from a variable to a disk file.</summary>
  2222. <param name="FileNumber">Any valid file number. </param>
  2223. <param name="Value">Value as System.Int64</param>
  2224. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2225. </member>
  2226. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.Single,System.Int64)">
  2227. <summary>Writes data from a variable to a disk file.</summary>
  2228. <param name="FileNumber">Any valid file number. </param>
  2229. <param name="Value">Variable name containing data to be written to disk. </param>
  2230. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2231. </member>
  2232. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.String,System.Int64,System.Boolean)">
  2233. <summary>Writes data from a variable to a disk file.</summary>
  2234. <param name="FileNumber">Any valid file number. </param>
  2235. <param name="Value">Variable name containing data to be written to disk. </param>
  2236. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2237. <param name="StringIsFixedLength">Specifies whether a string is to be treated as fixedlength, and whether to write a
  2238. descriptor for the string describing the length</param>
  2239. </member>
  2240. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Int32,System.ValueType,System.Int64)">
  2241. <summary>Writes data from a variable to a disk file.</summary>
  2242. <param name="FileNumber">Any valid file number. </param>
  2243. <param name="Value">Variable name containing data to be written to disk. </param>
  2244. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2245. </member>
  2246. <member name="M:Microsoft.VisualBasic.FileSystem.FilePut(System.Object,System.Object,System.Object)">
  2247. <summary>Writes data from a variable to a disk file.</summary>
  2248. <param name="FileNumber">FileNumber as System.Object</param>
  2249. <param name="Value">Variable name containing data to be written to disk. </param>
  2250. <param name="RecordNumber">RecordNumber as System.Object</param>
  2251. </member>
  2252. <member name="M:Microsoft.VisualBasic.FileSystem.FilePutObject(System.Int32,System.Object,System.Int64)">
  2253. <summary>Writes data from a variable to a disk file to be compatible with the VB6 variant</summary>
  2254. <param name="FileNumber">Any valid file number. </param>
  2255. <param name="Value">Variable name containing data to be written to disk. </param>
  2256. <param name="RecordNumber">Record number (Random mode files) or byte number (Binary mode files) at which writing begins. </param>
  2257. </member>
  2258. <member name="M:Microsoft.VisualBasic.FileSystem.FileWidth(System.Int32,System.Int32)">
  2259. <summary>Assigns an output line width to a file opened using the FileOpen
  2260. function.</summary>
  2261. <param name="FileNumber">Any valid file number.</param>
  2262. <param name="RecordWidth">Numeric expression which indicates how many
  2263. characters appear on a line before a new line is started.</param>
  2264. </member>
  2265. <member name="M:Microsoft.VisualBasic.Strings.GetChar(System.String,System.Int32)">
  2266. <summary>Returns the character at a specified position in a string</summary>
  2267. <param name="str">String to use as a source</param>
  2268. <param name="Index">1 based index of the character to return</param>
  2269. </member>
  2270. <member name="M:Microsoft.VisualBasic.FileSystem.PrintLine(System.Int32,System.Object[])">
  2271. <summary>Writes display-formatted data to a sequential file, including a linefeed at the end.</summary>
  2272. <param name="FileNumber">Any valid file number.</param>
  2273. <param name="Output">One or more comma-delimited expressions to write to a file.</param>
  2274. </member>
  2275. <member name="M:Microsoft.VisualBasic.VBMath.Randomize">
  2276. <summary>Seeds the VB random number generator using the time as the seed</summary>
  2277. </member>
  2278. <member name="M:Microsoft.VisualBasic.VBMath.Randomize(System.Double)">
  2279. <summary>Seeds the VB random number generator</summary>
  2280. <param name="Number">Number specifying the seed value</param>
  2281. </member>
  2282. <member name="M:Microsoft.VisualBasic.VBMath.Rnd">
  2283. <summary>Returns a Single containing a random number.</summary>
  2284. </member>
  2285. <member name="M:Microsoft.VisualBasic.VBMath.Rnd(System.Single)">
  2286. <summary>Returns a Single containing a random number.</summary>
  2287. <param name="Number">Determines which item from sequence to return.</param>
  2288. </member>
  2289. <member name="M:Microsoft.VisualBasic.Information.TypeName(System.Object)">
  2290. <summary>Returns a String that provides data type information about a variable.</summary>
  2291. <param name="VarName">Argument is an Object variable of any data type except a structure.</param>
  2292. </member>
  2293. <member name="M:Microsoft.VisualBasic.Information.VarType(System.Object)">
  2294. <summary>Returns a value indicating the subtype of a variable.</summary>
  2295. <param name="VarName">Variable for which the type is to be returned.</param>
  2296. </member>
  2297. <member name="M:Microsoft.VisualBasic.FileSystem.WriteLine(System.Int32,System.Object[])">
  2298. <summary>Writes data to a sequential file.</summary>
  2299. <param name="FileNumber">Any valid file number.</param>
  2300. <param name="Output">One or more comma-delimited expressions to write to a file.</param>
  2301. </member>
  2302. </members>
  2303. </doc>