Implemented VirtualPrinterDriver project
This commit is contained in:
parent
f29c84821b
commit
5c87967c3f
125 changed files with 8191 additions and 0 deletions
26
Common/VirtualPrinter.Agent.Core/Interfaces/IUserConfig.cs
Normal file
26
Common/VirtualPrinter.Agent.Core/Interfaces/IUserConfig.cs
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
using JetBrains.Annotations;
|
||||
|
||||
namespace VirtualPrinter.Agent.Core
|
||||
{
|
||||
public interface IUserConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// The printer stored in the registry.
|
||||
/// </summary>
|
||||
[CanBeNull]
|
||||
string RedirectPrinter { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The DPI value stored in the registry.
|
||||
/// </summary>
|
||||
/// <remarks>Initial value is null.</remarks>
|
||||
double? UserRenderDpi { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The format that you choose on your client side stored in the registry.
|
||||
/// </summary>
|
||||
/// <remarks>Intital value is PDF</remarks>
|
||||
[NotNull]
|
||||
string Format { get; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue