hwIPage GetWindowSyncGroupState
Gets the current state of an existing window synchronization group.
Syntax
hwIPage_handle GetWindowSyncGroupState syncGroupName
Application
HyperWorks Tcl Query
Description
This command retrieves the current state of an existing window synchronization group.
Inputs
- syncGroupName
- The name of the window synchronization group that you would like to change the state on.
Example
hwi OpenStack
hwi GetSessionHandle sess
sess GetProjectHandle proj
proj GetPageHandle pg [proj GetActivePage]
set numberOfWindows [pg GetNumberOfWindows]
set windowIdList ""
for { set i 1} { $i <= $numberOfWindows } { incr i } {
lappend windowIdList $i
if { [string length $windowIdList] } {
set syncGroupName "MyWindowSyncGroup"
pg AddWindowSyncGroup $syncGroupName $windowIdList
pgr SetWindowSyncGroupState $syncGroupName true; #activate window synchronization on this group
puts “Current state of $syncGroupName : [pg GetWindowSyncGroupState $syncGroupName]”
}
hwi CloseStack
Error
This command returns a warning code if the specified synchronization group name does not exist.