Login Page - Create Account

Support Board


Date/Time: Wed, 01 Jul 2026 09:57:20 +0000



Post From: Version 2865: Custom Study: missing input in settings dialog: my solution

[2026-01-18 18:34:10]
User509533 - Posts: 97
When I use the following, it does not show up in the Settings dialog:

SCInputRef Input_Subgraph13Reference = sc.Input[22];

The solution for me was to use a lower available index, such as [0], which works correctly for my code:

SCInputRef Input_Subgraph13Reference = sc.Input[0];