15 lines
308 B
C#
15 lines
308 B
C#
using ShrlAlgoToolkit.Core.Assists;
|
|
using ShrlAlgoToolkit;
|
|
using ShrlAlgoToolkit.Core;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.Assists;
|
|
|
|
public enum ThumbnailOptions
|
|
{
|
|
None = 0x00,
|
|
BiggerSizeOk = 0x01,
|
|
InMemoryOnly = 0x02,
|
|
IconOnly = 0x04,
|
|
ThumbnailOnly = 0x08,
|
|
InCacheOnly = 0x10
|
|
} |