C# Class Kajabity.Tools.Forms.Document

An abstract base class for all types of document that can be created, loaded, modified and saved by the SDIForm methods. Extend this class to add properties and methods appropriate for your particular type of document or data.
Exibir arquivo Open project: Kajabity/Kajabity-Tools Class Usage Examples

Public Methods

Method Description
Document ( ) : System

Empty contructor used to create an unnamed document - the name will be set later.

Document ( string name ) : System

Construct a document providing a name. The name may be changed later - e.g. when saved.

Method Details

Document() public method

Empty contructor used to create an unnamed document - the name will be set later.
public Document ( ) : System
return System

Document() public method

Construct a document providing a name. The name may be changed later - e.g. when saved.
public Document ( string name ) : System
name string The name of the document
return System