top of page

import sys

sys.path.append(RPR_GetResourcePath() + r"\UserPlugins")

from AZSTOKE_SILVER_python import *


def Msg(parm):

    RPR_ShowConsoleMsg(str(parm) + "\n")

    

retval, inputList = AZ_GetUserInputList("AZTitle",3,"AZ1,AZ2,AZ3","res1,res2,res3")


for i, value in enumerate(inputList, 1):

    Msg(value)

- SCRIPT -

inputList = AZ_GetUserInputList(titleStr,inputNum,captionStr,resultStr)

- API -

対応バージョン:

1.0.0

以降

UI

AZ_GetUserInputList

Generate default text boxes and output arrays

- API Detail-

▼Input value

  • titleStr (string): Window title name

  • inputNum(integer): Number of text boxes

  • captionStr(string) : Add a description for each input. ※"a,b,c,d" Enter the number of inputs with ",".

  • resultStr(string) : Set the initial value of the input value ※"a,b,c,d" Input number is written with ","

▼Output value

  • retval(boolean): Success or failure of API execution

  • inputList(table)(string): Outputs the input as an array

bottom of page