?? ioutputstrategy.cs
字號:
/*
* Created by SharpDevelop.
* User: Forstmeier Helmut
* Date: 05.09.2005
* Time: 15:30
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.Drawing;
namespace SharpReportCore
{
/// <summary>
/// Description of IOutputStrategy.
/// </summary>
public interface IOutputStrategy {
/// <summary>
/// Measure the Size of the currnet Item
/// </summary>
SizeF MeasureItem(System.Drawing.Graphics graphics);
/// <summary>
/// Format the current (TextBased)
/// </summary>
/// <param name="e"></param>
/// <returns></returns>
void FormatItem(System.Drawing.Graphics graphics );
/// <summary>
/// Print them out to ....
/// </summary>
/// <param name="e"></param>
void OutputItem (System.Drawing.Graphics graphics);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -