lazhen
2025-01-09 8afe90b633046db39042aada36b88193062f8cff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Quintiq file version 2.0
#parent: #root
Method GetActivatedFormSnapshot () as LibOpt_FormSnapshot id:Method_LibOpt_GlobalState_GetActivatedFormSnapshot
{
  #keys: '[151132.0.11775721]'
  Body:
  [*
    // Get an activated LibOpt_FormSnapshot instance.
    
    formsnapshot := select( Application.Frame(), SubComponents.astype( LibOpt_FormSnapshot ), form, true );
    
    // Construct the form if it doesn't exist yet.
    if( isnull( formsnapshot ) )
    {
      formsnapshot := construct( LibOpt_FormSnapshot );
      Application.Frame().ShowForm( &formsnapshot );
    }
    
    // Set focus on the form.
    formsnapshot.Activate();
    
    // Clear the current selections in the list.
    listsnapshot := formsnapshot.ListSnapshot();
    listsnapshot.SelectByKey( Key::ZeroKey() );
    
    return formsnapshot;
  *]
}