Type | Description | |||
Key as Variant | A long expression that indicates the index of the element being accessed, or a string expression that indicates the key of the element being accessed. | |||
ConditionalFormat | A ConditionalFormat object being returned. |
The following VB sample enumerates all elements in the ConditionalFormats collection:
Dim c As ConditionalFormat For Each c In Gantt1.ConditionalFormats Debug.Print c.Expression Next
The following VB sample enumerates all elements in the ConditionalFormats collection:
Dim i As Integer With Gantt1.ConditionalFormats For i = 0 To .Count - 1 Debug.Print .Item(i).Expression Next End With
The following C++ sample enumerates all elements in the ConditionalFormats collection:
for ( long i = 0; i < m_gantt.GetConditionalFormats().GetCount(); i++ ) { CConditionalFormat cf = m_gantt.GetConditionalFormats().GetItem( COleVariant( i ) ); OutputDebugString( cf.GetExpression() ); }
The following VB.NET sample enumerates all elements in the ConditionalFormats collection:
Dim c As EXGANTTLib.ConditionalFormat For Each c In AxGantt1.ConditionalFormats System.Diagnostics.Debug.Write(c.Expression) Next
The following VB.NET sample enumerates all elements in the ConditionalFormats collection:
Dim i As Integer With AxGantt1.ConditionalFormats For i = 0 To .Count - 1 System.Diagnostics.Debug.Write(.Item(i).Expression) Next End With
The following C# sample enumerates all elements in the ConditionalFormats collection:
foreach (EXGANTTLib.ConditionalFormat c in axGantt1.ConditionalFormats) System.Diagnostics.Debug.Write(c.Expression);
The following C# sample enumerates all elements in the ConditionalFormats collection:
for (int i = 0; i < axGantt1.ConditionalFormats.Count; i++) System.Diagnostics.Debug.Write(axGantt1.ConditionalFormats[i].Expression);
The following VFP sample enumerates all elements in the ConditionalFormats collection:
with thisform.Gantt1.ConditionalFormats for i = 0 to .Count - 1 wait .Item(i).Expression next endwith