public static bool KernelExpired { get; }
+ (BOOL)kernelExpired
public static boolean getKernelExpired();
public:
static property bool KernelExpired {
bool get();
}
KernelExpired # get (RasterSupport)
true if the LEADTOOLS kernel has expired; false, otherwise.
using Leadtools;
public void LeadtoolsKernelExample()
{
// show current kernel
switch (RasterSupport.KernelType)
{
case RasterKernelType.Release:
Console.WriteLine("Release kernel");
break;
case RasterKernelType.Evaluation:
Console.WriteLine("Evaluation kernel");
// show if the kernel has expired
if (RasterSupport.KernelExpired)
Console.WriteLine("Evaluation kernel has expired");
else
Console.WriteLine("Evaluation kernel has not expired yet");
break;
}
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document