4D v16.3

OBJECT Get action

ホーム

 
4D v16.3
OBJECT Get action

OBJECT Get action 


 

OBJECT Get action ( {* ;} object ) -> 戻り値 
引数   説明
演算子 in 指定時: objectはオブジェクト名 (文字列)、省略時: objectは変数またはフィールド
object  フォームオブジェクト in オブジェクト名 (*指定時)、または変数やフィールド (*省略時)
戻り値  テキスト in 設定された標準アクション

説明   

OBJECT Get actionコマンドは、object引数で指定したオブジェクトに設定された標準アクションのコードを返します。

オブジェクトに対する標準アクションは、デザインモードにおいてプロパティリストで設定するか( Design Reference マニュアルの 標準アクション を参照して下さい)、 OBJECT SET ACTION コマンドという新しいコマンドを使用することによって設定できます。

このコマンドはオブジェクトに関連付けられた標準アクションのコードを格納した文字列を返します。返された値と対応する定数は"関連付けられた標準アクションのテキスト値" テーマ内にあります。以下の通りです:

定数
Object Accept action 文字列 2
Object Add subrecord action 文字列 14
Object Automatic splitter action 文字列 16
Object Cancel action 文字列 1
Object Clear action 文字列 21
Object Copy action 文字列 19
Object Cut action 文字列 18
Object Database Settings action 文字列 32
Object Delete record action 文字列 7
Object Delete subrecord action 文字列 13
Object Edit subrecord action 文字列 12
Object First page action 文字列 10
Object First record action 文字列 5
Object Goto page action 文字列 15
Object Last page action 文字列 11
Object Last record action 文字列 6
Object MSC action 文字列 36
Object Next page action 文字列 8
Object Next record action 文字列 3
Object No standard action 文字列 0
Object Open back URL action 文字列 37
Object Open next URL action 文字列 38
Object Paste action 文字列 20
Object Previous page action 文字列 9
Object Previous record action 文字列 4
Object Quit action 文字列 27
Object Redo action 文字列 31
Object Refresh current URL action 文字列 39
Object Return to Design mode action 文字列 35
Object Select all action 文字列 22
Object Show Clipboard action 文字列 23
Object Stop loading URL action 文字列 40
Object Test Application action 文字列 26
Object Undo action 文字列 17

例題  

フォーム内にあるオブジェクトのうち、まだ何もアクションが関連付けされてないものに関して全て「キャンセル」 のアクションを関連付けたい場合:

 ARRAY TEXT($arrObjects;0)
 
 FORM GET OBJECTS($arrObjects)
 For($i;1;Size of array($arrObjects))
    If(OBJECT Get action(*;$arrObjects{$i})=Object No standard action)
       OBJECT SET ACTION(*;$arrObjects{$i};Object Cancel action)
    End if
 End for



参照 

OBJECT SET ACTION

 
プロパティ 

プロダクト: 4D
テーマ: オブジェクト(フォーム)
番号: 1260

 
履歴 

初出: 4D v14

 
ARTICLE USAGE

ランゲージリファレンス ( 4D v16)
ランゲージリファレンス ( 4D v16.1)
ランゲージリファレンス ( 4D v16.2)
ランゲージリファレンス ( 4D v16.3)