Пример #1
0
 //--------------------------------------------------------------------------------
 /// <summary>
 /// Determines if the specified state has the Enabled flag turned on
 /// </summary>
 /// <param name="state">The state to be checked</param>
 /// <returns>True if the Enabled flag is turned on</returns>
 public bool PageIsEnabled(WizardButtonState state)
 {
     return((state & WizardButtonState.Enabled) == WizardButtonState.Enabled);
 }
Пример #2
0
		public bool PageIsEnabled(WizardButtonState state)
		{
			return (state & WizardButtonState.Enabled) == WizardButtonState.Enabled;
		}
Пример #3
0
 //--------------------------------------------------------------------------------
 /// <summary>
 /// Determines if the specified state has the Visible flag turned on
 /// </summary>
 /// <param name="state">The state to be checked</param>
 /// <returns>True if the Visible flag is turned on</returns>
 public bool PageIsVisible(WizardButtonState state)
 {
     return((state & WizardButtonState.Visible) == WizardButtonState.Visible);
 }
Пример #4
0
		public bool PageIsVisible(WizardButtonState state)
		{
			return (state & WizardButtonState.Visible) == WizardButtonState.Visible;
		}