1 /*! 2 * @include "_NameSpace.js" 3 */ 4 5 /** 6 * Janeのウィンドウ上にあるエディットボックスやコンボボックスの文字列を参照するためのオブジェクト 7 * 文字列の参照や変更が可能 8 * 9 * @class _JVS.Edit 10 */ 11 _JVS.Edit = function(){}; 12 13 /** 14 * エディットボックスまたはコンボボックスの文字列全体 15 * 16 * Action:○ LateCall:○ Command:○ 17 * 18 * @type String 19 */ 20 _JVS.Edit.prototype.Text = ""; 21 22 /** 23 * エディットボックスまたはコンボボックスで範囲選択された文字列 24 * このプロパティに代入した場合、範囲選択部分が代入した文字列で置換される 25 * 26 * Action:○ LateCall:○ Command:○ 27 * 28 * @type String 29 */ 30 _JVS.Edit.prototype.SelText = ""; 31