Home  >  Article  >  What is the type of the return value of the inputbox function?

What is the type of the return value of the inputbox function?

青灯夜游
青灯夜游Original
2020-11-10 11:51:5121312browse

The type of return value of the inputbox function is "string". The InputBox function displays a prompt in a dialog box, waits for the user to enter text or press a button, and returns a String containing the contents of the text box. So its return type is string type.

What is the type of the return value of the inputbox function?

InputBox is a function in Visual Basic and VBS. Its function is to pop up a dialog box, display prompts in it, and wait for the user to enter text and press the button. , and then returns the text entered by the user.

Function:

Display an input box and prompt the user to enter text, numbers or select a cell range in the text box. When the OK button is pressed Returns a string containing the contents of the text box.

Syntax

InputBox(Prompt[,Title][,Default][,Xpos][,Ypos][,Helpfile,Context])

Parameter description:

(1) Prompt, a required parameter, which is the string that appears as the prompt information in the input box. The maximum length is approximately 1024 characters, determined by the width of the characters used. If the prompt contains multiple lines, you can use carriage return characters (Chr(13)), line feed characters (Chr(10)), or a combination of carriage return and line feed characters (Chr(13)&Chr(10)) between the lines. Separate.

(2) Title, optional parameter, used as a string in the title bar of the input box. If this parameter is omitted, the application name is displayed in the title bar.

(3) Default, optional parameter, serves as the default string in the input box and serves as the default value when there is no other input. If this parameter is omitted, the text box will be empty.

(4) Xpos, optional parameter, is a numerical value, appearing in pairs, specifying the horizontal distance between the left side of the input box and the left side of the screen. If this parameter is omitted, the input box will be centered horizontally.

(5) Ypos, optional parameter, is a numerical value, appears in pairs, specifies the distance between the top of the input box and the top of the screen. If this parameter is omitted, the input box will be positioned approximately one-third from the bottom of the screen in the vertical direction.

(6) Helpfile, optional parameter, is a string, representing a help file, which is used to provide context-sensitive help for the input box. If there is a Helpfile, there must be a Context.

(7) Context, optional parameter, is a numerical value, the context number of a help topic in the help file. If there is a Context, there must be a Helpfile.

Related instructions

(1) If both the Helpfile and Context parameters are provided, you can press the F1 key to view the help topic corresponding to the Context. Excel will usually enter A Help button is automatically added to the box.

(2) If you click OK or press the ENTER key, the InputBox function returns the content in the text box; if you click Cancel, this function returns a zero-length character string("").

(3) If you want to enter multiple parameters and omit some parameters in the middle, you must add comma delimiters in the corresponding positions.

(4)The InputBox function returns a string. If you need to get a numerical value, you need to use the Val function to convert the string into a value.

The above is the detailed content of What is the type of the return value of the inputbox function?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:What is digital?Next article:What is digital?