Exemplo n.º 1
0
 public bool Contains(DesignerAutoFormat format)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 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);
 }
Exemplo n.º 5
0
 public void Insert(int index, DesignerAutoFormat format)
 {
     this._autoFormats.Insert(index, format);
 }
Exemplo n.º 6
0
 public void Remove(DesignerAutoFormat format)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
		public virtual void OnAutoFormatApplied (DesignerAutoFormat appliedAutoFormat)
		{
			throw new NotImplementedException ();
		}
Exemplo n.º 8
0
		public void Insert (int index, DesignerAutoFormat format)
		{
			throw new NotImplementedException ();
		}
Exemplo n.º 9
0
		public void Remove (DesignerAutoFormat format)
		{
			throw new NotImplementedException ();
		}
Exemplo n.º 10
0
		public bool Contains (DesignerAutoFormat format)
		{
			throw new NotImplementedException ();
		}
Exemplo n.º 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);
 }
Exemplo n.º 15
0
 public int IndexOf(DesignerAutoFormat format)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 16
0
 public int Add(DesignerAutoFormat format)
 {
     return(this._autoFormats.Add(format));
 }
Exemplo n.º 17
0
 public void Insert(int index, DesignerAutoFormat format)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 18
0
 public bool Contains(DesignerAutoFormat format)
 {
     return(this._autoFormats.Contains(format));
 }
 public virtual void OnAutoFormatApplied(DesignerAutoFormat appliedAutoFormat)
 {
 }
Exemplo n.º 20
0
 public int IndexOf(DesignerAutoFormat format)
 {
     return(this._autoFormats.IndexOf(format));
 }
Exemplo n.º 21
0
 public virtual void OnAutoFormatApplied(DesignerAutoFormat appliedAutoFormat)
 {
     throw new NotImplementedException();
 }
 public int Add(DesignerAutoFormat format)
 {
     return this._autoFormats.Add(format);
 }