26 lines
291 B
C#
26 lines
291 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.AppKit
|
||
|
{
|
||
|
public class NSImagePartialEventArgs : EventArgs
|
||
|
{
|
||
|
public NSImageRep Rep
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public long Rows
|
||
|
{
|
||
|
get;
|
||
|
set;
|
||
|
}
|
||
|
|
||
|
public NSImagePartialEventArgs(NSImageRep rep, long rows)
|
||
|
{
|
||
|
Rep = rep;
|
||
|
Rows = rows;
|
||
|
}
|
||
|
}
|
||
|
}
|