Version

AllowMonthPopup Property

Determines whether a popup will be displayed when clicking on the header for a month.
Syntax
'Declaration
 
Public Property AllowMonthPopup As Boolean
public bool AllowMonthPopup {get; set;}
Remarks

The MonthPopup provides an unobtrusive way to scroll a new month into view. The popup will remain open until the mouse button is released. If the mouse is released within the Infragistics.Win.UltraWinSchedule.MonthViewMulti.UltraMonthPopupControl, the Month whose caption is under the mouse will be scrolled to the position when the MonthPopup was displayed. When released outside the window, no scrolling action will occur.

Example
This example enables/disables the control's month popup feature.

Private Sub EnableMonthPopup(ByVal enable As Boolean)

    If (Me.ultraMonthViewMulti1.AllowMonthPopup <> enable) Then
        Me.ultraMonthViewMulti1.AllowMonthPopup = enable
    End If

End Sub
private void EnableMonthPopup( bool enable )
{

	if ( this.ultraMonthViewMulti1.AllowMonthPopup != enable )
		this.ultraMonthViewMulti1.AllowMonthPopup = enable;

}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also