Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: c7d55d25ebb8c8c51c810fdbfa2ef764d2d8b07b (plain) (blame)
1
/*******************************************************************************
 * Copyright (c) 2007, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 ******************************************************************************
 *
 **/
/**
  * Object defaults()
  * @type defaults
  * @super Object
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535235.aspx
*/

function defaults(){};
defaults.prototype= new Object();
/**
  * Property blockDirection
  * @type String
  * @return String
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms533508.aspx
*/

defaults.prototype.blockDirection="";
/**
  * Property canHaveHTML
  * @type Boolean
  * @return Boolean
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms537836.aspx
*/

defaults.prototype.canHaveHTML=false;
/**
  * Property contentEditable
  * @type String
  * @return String
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms537837.aspx
*/

defaults.prototype.contentEditable="";
/**
  * Property isMultiLine
  * @type Boolean
  * @return Boolean
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms537839.aspx
*/

defaults.prototype.isMultiLine=false;
/**
  * Property tabStop
  * @type Boolean
  * @return Boolean
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms534656.aspx
*/

defaults.prototype.tabStop=false;
/**
  * Property viewInheritStyle
  * @type Boolean
  * @return Boolean
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535133.aspx
*/

defaults.prototype.viewInheritStyle=false;
/**
  * Property viewLink
  * @type document
  * @return document
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535134.aspx
*/

defaults.prototype.viewLink=new document();
/**
  * Property document
  * @type document
  * @return document
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms531073.aspx
*/

defaults.prototype.document= new document();
/**
  * Property viewMasterTab
  * @type Boolean
  * @return Boolean
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms535135.aspx
*/

defaults.prototype.viewMasterTab=false;
/**
  * Property onbeforeeditfocus
  * @type onbeforeeditfocus
  * @return onbeforeeditfocus
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536904.aspx
*/

defaults.prototype.onbeforeeditfocus= new onbeforeeditfocus();
/**
  * Property onbeforeeditfocus
  * @type onbeforeeditfocus
  * @return onbeforeeditfocus
  * @memberOf defaults
  * @since JScript 5.6
  * @link http://msdn2.microsoft.com/en-us/library/ms536904.aspx
*/

defaults.prototype.onbeforeeditfocus= new onbeforeeditfocus();

Back to the top