pascalabcnet/Utils/NodesGeneratorNew/Scintilla/Sources/ScintillaNET/IndicatorCollection.cs

46 lines
868 B
C#
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
#region Using Directives
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
#endregion Using Directives
namespace ScintillaNET
{
[TypeConverterAttribute(typeof(System.ComponentModel.ExpandableObjectConverter))]
public class IndicatorCollection : TopLevelHelper
{
#region Methods
public void Reset()
{
for (int i = 0; i < 32; i++)
this[i].Reset();
}
#endregion Methods
#region Properties
public Indicator this[int number]
{
get
{
return new Indicator(number, Scintilla);
}
}
#endregion Properties
#region Constructors
internal IndicatorCollection(Scintilla scintilla) : base(scintilla) { }
#endregion Constructors
}
}