Skip to content

Commit

Permalink
2002-10-13 DennisHayes <dennish@raytek.com>
Browse files Browse the repository at this point in the history
	* PrintDocument
	* Added OriginAtMargin for .NET V 1.1 compatablity.

svn path=/trunk/mcs/; revision=8270
  • Loading branch information
Dennis Hayes committed Oct 15, 2002
1 parent 8e61100 commit ce9fc09
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 11 deletions.
10 changes: 10 additions & 0 deletions mcs/class/System.Drawing/System.Drawing.Printing/PrintDocument.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ namespace System.Drawing.Printing {
public class PrintDocument{// : Component {
private PageSettings defaultpagesettings;
private string documentname;
private bool originAtMargins; // .NET V1.1 Beta

//[MonoTODO]
public PrintDocument() {
Expand Down Expand Up @@ -59,6 +60,15 @@ public PrinterSettings PrinterSettings{
throw new NotImplementedException ();
}
}
[MonoTODO]
public bool OriginAtMargins{// .NET V1.1 Beta
get{
return originAtMargins;
}
set{
originAtMargins = value;
}
}
public void Print(){
throw new NotImplementedException ();
}
Expand Down
26 changes: 15 additions & 11 deletions mcs/class/System.Drawing/System.Drawing.Printing/changelog
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
2002-10-13 DennisHayes <dennish@raytek.com>
* PrintDocument
* Added OriginAtMargin for .NET V 1.1 compatablity.

2002-9-2 DennisHayes <dennish@raytek.com>

* PageSettings.cs
* PaperSize.cs
* PaperSource.cs
* PrintControler.cs
* PrintDocument.cs
* PrintingPermission.cs
* PrintPageEventHandler.cs
* QueryPageSettingEventArgs.cs
* QueryPageSettingsEventHandler.cs
* added todos back
* minor bug fixes
* PageSettings.cs
* PaperSize.cs
* PaperSource.cs
* PrintControler.cs
* PrintDocument.cs
* PrintingPermission.cs
* PrintPageEventHandler.cs
* QueryPageSettingEventArgs.cs
* QueryPageSettingsEventHandler.cs
* added todos back
* minor bug fixes

2002-9-2 DennisHayes <dennish@raytek.com>

Expand Down

0 comments on commit ce9fc09

Please sign in to comment.