L_BOOL LAnimationWindow::IsAutoLoopEnabled() const
Determines whether auto loop is enabled.
The current state for auto loop. Possible values are:
Value | Meaning |
---|---|
TRUE | Auto loop is enabled. |
FALSE | Auto loop is disabled. |
When auto loop is enabled, animation playback will always loop, even if you call LAnimationWindow::EnableLoop(FALSE).
When auto loop is disabled, animation playback looping will depend on the last call to LAnimationWindow::EnableLoop.
Win32, x64.
The following example will set auto loop to TRUE, so every time an animation is
played, the play will be continuous, i.e. will loop infinitely.
/*<documentation/>*/
L_INT IsAutoLoopEnabledExample(HWND hWndParent)
{
L_BOOL bLoop;
LBase::LoadLibraries(LT_ALL_LEADLIB);
//make sure all libraries are loaded
LAnimationWindow MyAnimation;
//Set auto loop to TRUE
MyAnimation.EnableAutoLoop(TRUE);
if (MyAnimation.IsAutoLoopEnabled())
{
MyAnimation.EnableLoop(FALSE); //Has no effect
bLoop = MyAnimation.IsLoopEnabled(); //bLoop must be TRUE
}
else
MessageBox(hWndParent, TEXT("Auto Loop is not enabled"),TEXT("Example"),MB_OK | MB_ICONINFORMATION);
return SUCCESS;
}
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