Package version 1

ExternalObject.GetPropertyメソッド(Java連携)

Android

 

説明

Javaオブジェクトのフィールドの値を取得します。

 

呼出形式

var ret = extobj.GetProperty( fieldName)

 

戻り値

Javaクラスのフィールドの値

 

引数

String fieldName

フィールド名

大文字と小文字を区別します。

 

例外

EXTOBJ-5

フィールド%sを見つけられませんでした

 

EXTOBJ-6

フィールド%sの取得に失敗しました

 

EXTOBJ-9

 

null参照に対する操作です

使用例

var extobj1 = new ExternalObject("android.graphics.Point", null, 10, 20);
print(extobj1.GetProperty("x"), "\n");
print(extobj1.GetProperty("y"), "\n");
 
var extobj2 = new ExternalObject("sampleNS.SampleClass", "sampleLib");
print(extobj2.GetProperty("SampleProp"), "\n");
 

関連項目

ExtValクラス

SetPropertyGetPropStaticメソッド

 



「オンラインマニュアル」一覧へ戻る
「Bizの宝箱」TOPへ戻る