C# 클래스 SobekCM.Library.Helpers.AceEditor.AceEditor

Class is used to write the HTML to allow users to edit content using the Ace editor library
This is primarily utilized for CSS and Javascript editing currently
파일 보기 프로젝트 열기: MarkVSullivan/SobekCM-Web-Application 1 사용 예제들

공개 메소드들

메소드 설명
AceEditor ( ) : System

Constructor for a new instance of the AceEditor class

AceEditor ( AceEditor_Mode Mode ) : System

Constructor for a new instance of the AceEditor class

Add_To_Stream ( TextWriter Output, string Contents ) : void

Add the Ace editor and all the necessary html/javascript to enable an Ace editor here on the page

Add_To_Stream ( TextWriter Output, string Contents, bool Include_Script_Reference ) : void

Add the Ace editor and all the necessary html/javascript to enable an Ace editor here on the page

메소드 상세

AceEditor() 공개 메소드

Constructor for a new instance of the AceEditor class
public AceEditor ( ) : System
리턴 System

AceEditor() 공개 메소드

Constructor for a new instance of the AceEditor class
public AceEditor ( AceEditor_Mode Mode ) : System
Mode AceEditor_Mode Current mode for this editor ( i.e., CSS, Javascript, or HTML editing )
리턴 System

Add_To_Stream() 공개 메소드

Add the Ace editor and all the necessary html/javascript to enable an Ace editor here on the page
public Add_To_Stream ( TextWriter Output, string Contents ) : void
Output System.IO.TextWriter Writer to write to the stream
Contents string
리턴 void

Add_To_Stream() 공개 메소드

Add the Ace editor and all the necessary html/javascript to enable an Ace editor here on the page
public Add_To_Stream ( TextWriter Output, string Contents, bool Include_Script_Reference ) : void
Output System.IO.TextWriter Writer to write to the stream
Contents string
Include_Script_Reference bool Flag indicates if the Ace script reference should be /// added to the output stream here (might not if there are multiple AceEditor areas on the same page )
리턴 void