Version

AllowColumnResizingResolved Property

Returns whether columns that separate owner/days can be resized by the user.
Syntax
'Declaration
 
Public ReadOnly Property AllowColumnResizingResolved As Boolean
public bool AllowColumnResizingResolved {get;}
Remarks

If AllowColumnResizing is set to Default then this property returns false if GroupingStyle is set to NoGrouping.

Example
The following code sample demonstrates how the AllowColumnResizingResolved, ColumnScrollingResolved, MaximumVisibleDaysResolved, ShowOwnerHeaderResolved, and TimeSlotDescriptorLabelStyleResolved properties can be used to easily determine the actual value of their corresponding properties.

Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Debug.WriteLine("The 'AllowColumnSizing' property's value resolves to " + Me.UltraDayView1.AllowColumnResizingResolved.ToString())
        Debug.WriteLine("The 'ColumnScrolling' property's value resolves to " + Me.UltraDayView1.ColumnScrollingResolved.ToString())
        Debug.WriteLine("The 'MaximumVisibleDays' property's value resolves to " + Me.UltraDayView1.MaximumVisibleDaysResolved.ToString())
        Debug.WriteLine("The 'ShowOwnerHeader' property's value resolves to " + Me.UltraDayView1.ShowOwnerHeaderResolved.ToString())
        Debug.WriteLine("The 'TimeSlotDescriptorLabelStyle' property's value resolves to " + Me.UltraDayView1.TimeSlotDescriptorLabelStyleResolved.ToString())

    End Sub
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
using System.Diagnostics;

		private void button3_Click(object sender, System.EventArgs e)
		{
			Debug.WriteLine( "The 'AllowColumnSizing' property's value resolves to " + this.ultraDayView1.AllowColumnResizingResolved.ToString() );
			Debug.WriteLine( "The 'ColumnScrolling' property's value resolves to " + this.ultraDayView1.ColumnScrollingResolved.ToString() );
			Debug.WriteLine( "The 'MaximumVisibleDays' property's value resolves to " + this.ultraDayView1.MaximumVisibleDaysResolved.ToString() );
			Debug.WriteLine( "The 'ShowOwnerHeader' property's value resolves to " + this.ultraDayView1.ShowOwnerHeaderResolved.ToString() );
			Debug.WriteLine( "The 'TimeSlotDescriptorLabelStyle' property's value resolves to " + this.ultraDayView1.TimeSlotDescriptorLabelStyleResolved.ToString() );
		}
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