12 lines
245 B
C#
12 lines
245 B
C#
namespace Szmedi.Toolkit.Assists
|
|
{
|
|
public enum ThumbnailOptions
|
|
{
|
|
None = 0x00,
|
|
BiggerSizeOk = 0x01,
|
|
InMemoryOnly = 0x02,
|
|
IconOnly = 0x04,
|
|
ThumbnailOnly = 0x08,
|
|
InCacheOnly = 0x10
|
|
}
|
|
} |