EmEditor (text editor) Forum Index
   EmEditor Core Enhancement Suggestions
     no tabs
Register To Post

Flat Previous Topic | Next Topic
Poster Thread
Yutaka
Posted on: 7/12/2010 4:08 pm
Webmaster
Joined: 9/28/2006
From: Redmond
Posts: 2401
Re: no tabs
Hi Maria,

To enable or disable the Tabs, you can use the EnableTab property of Editor object.


editor.EnableTab = true;



To find if OpenDocuments.dll is checked, please use the following code:


function IsPluginChecked( sPluginName )
{
	for( nID = 5632; nID <= 5632 + 255; nID++ ){
		str = editor.QueryStringbyID( nID );
		if( str == sPluginName ){
			nStatus = editor.QueryStatusByID( nID );
			if( nStatus & eeStatusLatched ) {
				return true;
			}
			break;
		}
	}
	return false;
}

alert( IsPluginChecked( "OpenDocuments.dll" ) );


Please let me know if you have further questions. Thanks!


----------------
Yutaka Emura
Developer of EmEditor
http://www.emeditor.com/

Flat Previous Topic | Next Topic


Subject Poster Date
   no tabs derekcohen 7/8/2010 1:21 am
     Re: no tabs Yutaka 7/8/2010 9:35 am
     Re: no tabs MariaK 7/12/2010 3:45 pm
     » Re: no tabs Yutaka 7/12/2010 4:08 pm
         Re: no tabs derekcohen 7/16/2010 3:29 am

Register To Post
 
English čeština Deutsch español français italiano 日本語 한국어 Русский 简体中文 繁體中文