10 lines
131 B
C#
10 lines
131 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Print
|
|
{
|
|
public interface IPrintableContainer
|
|
{
|
|
PrintSession CreatePrintSession();
|
|
}
|
|
}
|