言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

GUILayout.PasswordField

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function PasswordField(password: string, maskChar: char, maxLength: int, style: GUIStyle, params options: GUILayoutOption[]): string;
public static string PasswordField(string password, char maskChar, int maxLength, GUIStyle style, params GUILayoutOption[] options);
public static def PasswordField(password as string, maskChar as char, maxLength as int, style as GUIStyle, *options as GUILayoutOption[]) as string

Parameters

password 編集するパスワード。この関数が返す値は以下の例のように同じ変数に格納しなおすべきです
maskChar パスワードをマスクする文字
maxLength 文字列の最大の長さ。省略した場合は無制限に入力することができます
style 使用するスタイル。省略された場合は、現在のGUISkinにある textField スタイルを使用します。

Returns

string 編集されたパスワード

Description

ユーザーがパスワードを入力することができるテキストフィールド


ゲームビューのパスワードフィールド

	var passwordToEdit : String = "My Password";

	function OnGUI () {
		// Make a password field that modifies passwordToEdit.
		passwordToEdit = GUILayout.PasswordField (passwordToEdit, "*"[0], 25);
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    public string passwordToEdit = "My Password";
    void OnGUI() {
        passwordToEdit = GUILayout.PasswordField(passwordToEdit, "*"[0], 25);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	public passwordToEdit as string = 'My Password'

	def OnGUI() as void:
		passwordToEdit = GUILayout.PasswordField(passwordToEdit, '*'[0], 25)