Sideway
output.to from Sideway
Draft for Information Only

VBScript Methods of PreDefined Object

VBScript methods predefined Objects are provided for increasing the functionality of VBScript.

NameApplied toReviewDescriptionAdd MethodDictionary Objectlast updated 09 Dec 2017is to add a given key and item pair to the associated Dictionary Object.Add MethodFolders Collectionlast updated 16 Dec 2017is to add a new folder of the given folderName to the associated Folders collection.BuildPath MethodFileSystemObject Objectlast updated 13 Dec 2017is to append a given name to the specified existing path.Clear MethodErr Objectlast updated 10 Dec 2017is to clear all property settings of the Err object.Close MethodTextStream Objectlast updated 16 Dec 2017is to close the associated TextStream Object.Copy MethodFolder Object, File Objectlast updated 16 Dec 2017is to copy the associated file or folder object to the specified destination according to the specified overwrite setting.CopyFile MethodFileSystemObject Objectlast updated 13 Dec 2017is to copy one or more given source files to the specified destination according to the specified overwrite setting.CopyFolder MethodFileSystemObject Objectlast updated 13 Dec 2017is to recursively copy the given source folder to the specified destination according to the specified overwrite settingCreateFolder MethodFileSystemObject Objectlast updated 14 Dec 2017is to create a folder.object of the specified foldername.CreateTextFile MethodFileSystemObject Object, Folder Object, TextStream Objectlast updated 14 Dec 2017is to create the given filename file according to the overwrite setting.and to return the associated textStream object that can be used to read from or write to the created file.Delete MethodFolder Object, File Objectlast updated 16 Dec 2017is to delete the associated file or folder object according to the force setting.DeleteFile MethodFileSystemObject Objectlast updated 14 Dec 2017is to delete the given filespec file according to the force setting.DeleteFolder MethodFileSystemObject Objectlast updated 14 Dec 2017is to delete the given folderspec folder and its contents according to the force setting.DriveExists MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a Boolean value indicating the drive of the given drivespec exist with True or does not exist with False.Execute MethodRegExp Objectlast updated 11 Dec 2017is to executes a regular expression search against a specified string.Exists MethodDictionary Objectlast updated 09 Dec 2017is to return a Boolean value indicating the given key exist with True or does not exist with False.FileExists MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a Boolean value indicating the file of the given filespec exist with True or does not exist with False.FolderExists MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a Boolean value indicating the folder of the given folderspec exist with True or does not exist with False..GetAbsolutePathName MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a complete and unambiguous absolute path name from given pathspec path.GetBaseName MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a string containing the base name of the last component, less any file extension, in given path.GetDrive MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a Drive object according to the drive component of the given drivespec.GetDriveName MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a string containing the drive name of drive component of the given path.GetExtensionName MethodFileSystemObject Objectlast updated 14 Dec 2017is to return the file extension of the last file component of the given pathGetFile MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a File Object according to the file of given filespec path.GetFileName MethodFileSystemObject Objectlast updated 14 Dec 2017is to return the file namer of a file component according to the last component of given pathspec path.GetFileVersion MethodFileSystemObject Objectlast updated 14 Dec 2017is to return the version number of a file component according to the last component of given pathspec path.GetFolder MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a Folder object according to the given folderspec path.GetParentFolderName MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a string containing the name of the parent folder of the last component in a given path.GetSpecialFolder MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a special Folder Object according to the given folderspec.GetStandardStream MethodFileSystemObject Objectlast updated 14 Dec 2017is to return a standard TextStream Object according to the given standardStreamType setting and specified optional unicode setting.GetTempName MethodFileSystemObject Objectlast updated 14 Dec 2017is to generate and return a randomly generated temporary file or folder name for performing operations that require a temporary file or folder.Items MethodDictionary Objectlast updated 09 Dec 2017is to return an array containing all existing items of the associated Dictionary Object.Keys MethodDictionary Objectlast updated 09 Dec 2017is to return an array containing all existing keys of the associated Dictionary Object.Move MethodFolder Object, File Objectlast updated 16 Dec 2017is to move folder or file of the associated Folder or File Object to the specified destination.MoveFile MethodFileSystemObject Objectlast updated 14 Dec 2017is to move one or more given source files to the specified destination.MoveFolder MethodFileSystemObject Objectlast updated 14 Dec 2017is to move one or more given source folders to the specified destination.OpenAsTextStream MethodFile Objectlast updated 16 Dec 2017is to open a TextStream Object of the associated File Object according to specified optional iomode setting and format setting for reading from, writing to, or appending to the file.OpenTextFile MethodFileSystemObject Objectlast updated 14 Dec 2017is to open a given filename file of the associated FileSystemObject Object according to the specified optional iomode setting, create keyword, and format setting, and to return a TextStream Object that can be used to read from, write to, or append to the file.Raise MethodErr Objectlast updated 10 Dec 2017is to generate a run-time error result of the given number and together with other specifed optional source, description, helpfile, helpcontext in the Err Object.Read MethodTextStream Objectlast updated 16 Dec 2017is to read a specified characters number of characters from a file of the associated TextStream Object, and to return the resulting string.ReadAll MethodTextStream Objectlast updated 16 Dec 2017is to read the entire file of the associated TextStream Object, and to return the resulting string.ReadLine MethodTextStream Objectlast updated 16 Dec 2017is to read an entire line (up to, but not including, the newline character) from from a file of the associated TextStream Object, and to return the resulting string.Remove MethodDictionary Objectlast updated 09 Dec 2017is to remove an element with the specified key from an associated Dictionary Object.RemoveAll MethodDictionary Objectlast updated 09 Dec 2017is to remove all elements of the associated Dictionary Object.Replace MethodRegExp Objectlast updated 11 Dec 2017is to replaces the given string1 found in a regular expression search with the specified string2.Skip MethodTextStream Objectlast updated 16 Dec 2017is to skip a given characters number of characters when reading from a file of the associated TextStream Object.SkipLine MethodTextStream Objectlast updated 16 Dec 2017is to skip the next line when reading from a file of the associated TextStream Object.Test MethodRegExp Objectlast updated 11 Dec 2017is to executes a regular expression search against a given string, and to return a Boolean value indicating if a pattern match was found.Write MethodTextStream Objectlast updated 16 Dec 2017is to write a specified string to a file of the associated TextStream Object.Write MethodDebug Objectlast updated 10 Dec 2017is to send strings given str1, str2, …, and strN strings to the script debugger, followed by a newline character..WriteBlankLines MethodTextStream Objectlast updated 16 Dec 2017is to write a given lines number of newline characters to a a file of the associated TextStream Object.WriteLine MethodTextStream Objectlast updated 17 Dec 2017is to write a given string and newline character to a file of the associated TextStream Object.WriteLine MethodDebug Objectlast updated 10 Dec 2017is to send given str1, str2, …, and strN strings to the script debugger, followed by a newline character.


©sideway

ID: 180600012 Last Updated: 6/12/2018 Revision: 0


Latest Updated LinksValid XHTML 1.0 Transitional Valid CSS!Nu Html Checker Firefox53 Chromena IExplorerna
IMAGE

Home 5

Business

Management

HBR 3

Information

Recreation

Hobbies 8

Culture

Chinese 1097

English 339

Reference 79

Computer

Hardware 249

Software

Application 213

Digitization 32

Latex 52

Manim 205

KB 1

Numeric 19

Programming

Web 289

Unicode 504

HTML 66

CSS 65

SVG 46

ASP.NET 270

OS 429

DeskTop 7

Python 72

Knowledge

Mathematics

Formulas 8

Algebra 84

Number Theory 206

Trigonometry 31

Geometry 34

Coordinate Geometry 2

Calculus 67

Complex Analysis 21

Engineering

Tables 8

Mechanical

Mechanics 1

Rigid Bodies

Statics 92

Dynamics 37

Fluid 5

Fluid Kinematics 5

Control

Process Control 1

Acoustics 19

FiniteElement 2

Natural Sciences

Matter 1

Electric 27

Biology 1

Geography 1


Copyright © 2000-2024 Sideway . All rights reserved Disclaimers last modified on 06 September 2019