1 write to initialState
System.Workflow.ComponentModel (1)
AuthoringOM\Design\MessageFilters\ZoomingMessageFilter.cs (1)
29this.currentState = this.initialState = (initiateZoomIn) ? ZoomState.In : ZoomState.Out;
10 references to initialState
System.Workflow.ComponentModel (10)
AuthoringOM\Design\MessageFilters\ZoomingMessageFilter.cs (10)
82this.currentState = ((Control.ModifierKeys & Keys.Shift) != 0) ? ((this.initialState == ZoomState.In) ? ZoomState.Out : ZoomState.In) : this.initialState; 134this.currentState = ((eventArgs.Modifiers & Keys.Shift) != 0) ? ((this.initialState == ZoomState.In) ? ZoomState.Out : ZoomState.In) : this.initialState; 142this.currentState = ((eventArgs.Modifiers & Keys.Shift) != 0) ? ((this.initialState == ZoomState.In) ? ZoomState.Out : ZoomState.In) : this.initialState; 159return (this.initialState == ZoomState.In); 190this.currentState = ((Control.ModifierKeys & Keys.Shift) != 0) ? ((this.initialState == ZoomState.In) ? ZoomState.Out : ZoomState.In) : this.initialState; 271menuCommand.Checked = (menuCommand.CommandID == ((this.initialState == ZoomState.In) ? WorkflowMenuCommands.ZoomIn : WorkflowMenuCommands.ZoomOut));