KcsPanelSchema Class
- Last UpdatedJan 07, 2026
- 1 minute read
The KcsPanelSchema python can help you to modify the schema of a panel. You initiate this class by giving the name of the panel for which you want to do scheme updates. There are two methods SetValue and GetValue that will get/set the value of a specific keyword in a specific statement.
|
Example: |
|---|
|
KcsPanelSchema |
|
import KcsPanelSchema import kcs_ui panelName = 'JUMBO-GIR11700' sch = KcsPanelSchema.PanelSchema( panelName ) group = 8 val = sch.GetValue(group, 'SID') es = sch.SetValue(group, 'SID', 'OS') val = sch.GetValue(group, 'SID') |