메소드 | 설명 | |
---|---|---|
Activate ( ) : void |
Occurs when entering the control on the main dock panel.
|
|
Copy ( ) : void |
Override this to add copy logic.
|
|
CreateNew ( ) : void |
Override this to do something on new file.
|
|
Cut ( ) : void |
Override this to add cut logic.
|
|
Deactivate ( ) : void |
Occurs when leaving the control on the main dock panel.
|
|
LoadFile ( string filename ) : void |
Override this to add custom file loading logic.
|
|
Paste ( ) : void |
Override this to add paste logic.
|
|
Redo ( ) : void |
Override this to add redo logic.
|
|
Restyle ( ) : void |
Invoke the restyle callback.
|
|
Save ( ) : void |
Override this to add custom saving logic.
|
|
SaveAs ( ) : void |
Override this to add custom save as logic.
|
|
SaveLayout ( ) : void |
Override this to save it's layout.
|
|
SelectAll ( ) : void |
Override this to add select all logic.
|
|
SetTabText ( string text ) : void |
Sets the tab text on the main dock panel.
|
|
Undo ( ) : void |
Override this to add undo logic.
|
|
ZoomIn ( ) : void |
Override this to add zoom in logic.
|
|
ZoomOut ( ) : void |
Override this to add zoom out logic.
|
메소드 | 설명 | |
---|---|---|
IsDirty ( ) : bool |
Gets whether or not the file has been modified.
|
|
IsSaved ( ) : bool |
Gets whether or not the file has a save path.
|
|
MakeDirty ( ) : void |
Marks the document as modified if it already hasn't.
|
public SetTabText ( string text ) : void | ||
text | string | The title of this editor. |
리턴 | void |