Version

BarSettingsMilestone Property

Returns a BarSettingsMilestone instance which defines the visual attributes of the UIElement which represents this Task in the user interface when displayed as a milestone (as opposed to a normal bar or a summary).
Syntax
'Declaration
 
Public ReadOnly Property BarSettingsMilestone As BarSettingsMilestone
public BarSettingsMilestone BarSettingsMilestone {get;}
Example
The following code illustrates the bar settings available for a Task which is a milestone.

Imports Infragistics.Win.UltraWinSchedule
Imports Infragistics.Win.UltraWinGanttView



Private Sub Form_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Form.Load
    
    ' Sets the text to displayed on the right side of the bar, when a task is set to be a Milestone    
    Me.ultraGanttView1.TimelineSettings.BarSettingsMilestone.BarTextRight = Infragistics.Win.UltraWinSchedule.TaskUI.BarTextField.PercentComplete 

End Sub
using Infragistics.Win.UltraWinSchedule;
using Infragistics.Win.UltraWinGanttView;

 private void Form_Load(object sender, EventArgs e)
     {
			// Sets the text to displayed on the right side of the bar, when a task is set to be a Milestone
			 this.ultraGanttView1.TimelineSettings.BarSettingsMilestone.BarTextRight = Infragistics.Win.UltraWinSchedule.TaskUI.BarTextField.PercentComplete;
		
		}
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