나는 set text 를 사용하고 싶습니다
title 이라는 변수를 사용하여 문자를 저장하고
(대외문) title 의 형식으로 title에 저장된 내용을 불러오고싶은데 방법을 알고싶어요
나는 set text 를 사용하고 싶습니다
title 이라는 변수를 사용하여 문자를 저장하고
(대외문) title 의 형식으로 title에 저장된 내용을 불러오고싶은데 방법을 알고싶어요
// Create a variable called title and assign it the value “My Title”
string title = “My Title”;
// Use the Set Text activity to load the contents of the title variable into a UI element
Set Text activity.Target = “txtTitle”;
Set Text activity.Value = title;
Hi @user118
title
variable. This could be a textbox, a label, or any other element that can display text.title
variable, you can use string interpolation or string concatenation to include it in the desired format."Title: " + title
Check the below docs for more help
https://docs.uipath.com/activities/other/latest/ui-automation/set-text
i want this
ex) Text = text
Title = title
sex text : Text + Title → texttitle
i want this
ex) Text = text
Title = title
sex text : Text + Title → texttitle
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.