2016-10-17 4 views

答えて

2

は、このようなdisplay methodを作成します。

public display PersonName fullName() 
{ 
    return this.FirstName + ' ' + this.LastName; 
} 

edit method参照してください。

+0

ヒント:PersonNameのはEDTです。) – kinga94

0

2つのフィールド(またはそれ以上)を連結するには、StrFmt()メソッドを使用できます。

例:他のため

str fullName;  

fullName = strFmt("%1 %2", this.Name, this.Surname); 
関連する問題