Пример #1
0
 public bool Contains(DesignerAutoFormat format)
 {
     throw new NotImplementedException();
 }
Пример #2
0
 public void Remove(DesignerAutoFormat format)
 {
     this._autoFormats.Remove(format);
 }
 public override void OnAutoFormatApplied(DesignerAutoFormat appliedAutoFormat)
 {
     this.OnStylesChanged();
     base.OnAutoFormatApplied(appliedAutoFormat);
 }
 public bool Contains(DesignerAutoFormat format)
 {
     return this._autoFormats.Contains(format);
 }
Пример #5
0
 public void Insert(int index, DesignerAutoFormat format)
 {
     this._autoFormats.Insert(index, format);
 }
Пример #6
0
 public void Remove(DesignerAutoFormat format)
 {
     throw new NotImplementedException();
 }
Пример #7
0
		public virtual void OnAutoFormatApplied (DesignerAutoFormat appliedAutoFormat)
		{
			throw new NotImplementedException ();
		}
Пример #8
0
		public void Insert (int index, DesignerAutoFormat format)
		{
			throw new NotImplementedException ();
		}
Пример #9
0
		public void Remove (DesignerAutoFormat format)
		{
			throw new NotImplementedException ();
		}
Пример #10
0
		public bool Contains (DesignerAutoFormat format)
		{
			throw new NotImplementedException ();
		}
Пример #11
0
		public int IndexOf (DesignerAutoFormat format)
		{
			throw new NotImplementedException ();
		}
 public void Remove(DesignerAutoFormat format)
 {
     this._autoFormats.Remove(format);
 }
 public void Insert(int index, DesignerAutoFormat format)
 {
     this._autoFormats.Insert(index, format);
 }
 public int IndexOf(DesignerAutoFormat format)
 {
     return this._autoFormats.IndexOf(format);
 }
Пример #15
0
 public int IndexOf(DesignerAutoFormat format)
 {
     throw new NotImplementedException();
 }
Пример #16
0
 public int Add(DesignerAutoFormat format)
 {
     return(this._autoFormats.Add(format));
 }
Пример #17
0
 public void Insert(int index, DesignerAutoFormat format)
 {
     throw new NotImplementedException();
 }
Пример #18
0
 public bool Contains(DesignerAutoFormat format)
 {
     return(this._autoFormats.Contains(format));
 }
 public virtual void OnAutoFormatApplied(DesignerAutoFormat appliedAutoFormat)
 {
 }
Пример #20
0
 public int IndexOf(DesignerAutoFormat format)
 {
     return(this._autoFormats.IndexOf(format));
 }
Пример #21
0
 public virtual void OnAutoFormatApplied(DesignerAutoFormat appliedAutoFormat)
 {
     throw new NotImplementedException();
 }
 public int Add(DesignerAutoFormat format)
 {
     return this._autoFormats.Add(format);
 }