scripts
This commit is contained in:
@@ -0,0 +1,155 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.ComponentModel.Design
|
||||
{
|
||||
/// <summary>Represents a collection of <see cref="T:System.ComponentModel.Design.DesignerVerb" /> objects.</summary>
|
||||
// Token: 0x02000045 RID: 69
|
||||
[ComVisible(true)]
|
||||
public class DesignerVerbCollection : CollectionBase
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.DesignerVerbCollection" /> class.</summary>
|
||||
// Token: 0x060002C5 RID: 709 RVA: 0x000098B8 File Offset: 0x00007AB8
|
||||
public DesignerVerbCollection()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Design.DesignerVerbCollection" /> class using the specified array of <see cref="T:System.ComponentModel.Design.DesignerVerb" /> objects.</summary>
|
||||
/// <param name="value">A <see cref="T:System.ComponentModel.Design.DesignerVerb" /> array that indicates the verbs to contain within the collection. </param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="value" /> is null.</exception>
|
||||
// Token: 0x060002C6 RID: 710 RVA: 0x000098C0 File Offset: 0x00007AC0
|
||||
public DesignerVerbCollection(DesignerVerb[] value)
|
||||
{
|
||||
base.InnerList.AddRange(value);
|
||||
}
|
||||
|
||||
/// <summary>Gets or sets the <see cref="T:System.ComponentModel.Design.DesignerVerb" /> at the specified index.</summary>
|
||||
/// <returns>A <see cref="T:System.ComponentModel.Design.DesignerVerb" /> at each valid index in the collection.</returns>
|
||||
/// <param name="index">The index at which to get or set the <see cref="T:System.ComponentModel.Design.DesignerVerb" />. </param>
|
||||
// Token: 0x170000CF RID: 207
|
||||
public DesignerVerb this[int index]
|
||||
{
|
||||
get
|
||||
{
|
||||
return (DesignerVerb)base.InnerList[index];
|
||||
}
|
||||
set
|
||||
{
|
||||
base.InnerList[index] = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Adds the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to the collection.</summary>
|
||||
/// <returns>The index in the collection at which the verb was added.</returns>
|
||||
/// <param name="value">The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to add to the collection. </param>
|
||||
// Token: 0x060002C9 RID: 713 RVA: 0x000098F8 File Offset: 0x00007AF8
|
||||
public int Add(DesignerVerb value)
|
||||
{
|
||||
return base.InnerList.Add(value);
|
||||
}
|
||||
|
||||
/// <summary>Adds the specified set of designer verbs to the collection.</summary>
|
||||
/// <param name="value">An array of <see cref="T:System.ComponentModel.Design.DesignerVerb" /> objects to add to the collection. </param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="value" /> is null.</exception>
|
||||
// Token: 0x060002CA RID: 714 RVA: 0x00009908 File Offset: 0x00007B08
|
||||
public void AddRange(DesignerVerb[] value)
|
||||
{
|
||||
base.InnerList.AddRange(value);
|
||||
}
|
||||
|
||||
/// <summary>Adds the specified collection of designer verbs to the collection.</summary>
|
||||
/// <param name="value">A <see cref="T:System.ComponentModel.Design.DesignerVerbCollection" /> to add to the collection. </param>
|
||||
/// <exception cref="T:System.ArgumentNullException">
|
||||
/// <paramref name="value" /> is null.</exception>
|
||||
// Token: 0x060002CB RID: 715 RVA: 0x00009918 File Offset: 0x00007B18
|
||||
public void AddRange(DesignerVerbCollection value)
|
||||
{
|
||||
base.InnerList.AddRange(value);
|
||||
}
|
||||
|
||||
/// <summary>Gets a value indicating whether the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> exists in the collection.</summary>
|
||||
/// <returns>true if the specified object exists in the collection; otherwise, false.</returns>
|
||||
/// <param name="value">The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to search for in the collection. </param>
|
||||
// Token: 0x060002CC RID: 716 RVA: 0x00009928 File Offset: 0x00007B28
|
||||
public bool Contains(DesignerVerb value)
|
||||
{
|
||||
return base.InnerList.Contains(value);
|
||||
}
|
||||
|
||||
/// <summary>Copies the collection members to the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> array beginning at the specified destination index.</summary>
|
||||
/// <param name="array">The array to copy collection members to. </param>
|
||||
/// <param name="index">The destination index to begin copying to. </param>
|
||||
// Token: 0x060002CD RID: 717 RVA: 0x00009938 File Offset: 0x00007B38
|
||||
public void CopyTo(DesignerVerb[] array, int index)
|
||||
{
|
||||
base.InnerList.CopyTo(array, index);
|
||||
}
|
||||
|
||||
/// <summary>Gets the index of the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" />.</summary>
|
||||
/// <returns>The index of the specified object if it is found in the list; otherwise, -1.</returns>
|
||||
/// <param name="value">The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> whose index to get in the collection. </param>
|
||||
// Token: 0x060002CE RID: 718 RVA: 0x00009948 File Offset: 0x00007B48
|
||||
public int IndexOf(DesignerVerb value)
|
||||
{
|
||||
return base.InnerList.IndexOf(value);
|
||||
}
|
||||
|
||||
/// <summary>Inserts the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> at the specified index.</summary>
|
||||
/// <param name="index">The index in the collection at which to insert the verb. </param>
|
||||
/// <param name="value">The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to insert in the collection. </param>
|
||||
// Token: 0x060002CF RID: 719 RVA: 0x00009958 File Offset: 0x00007B58
|
||||
public void Insert(int index, DesignerVerb value)
|
||||
{
|
||||
base.InnerList.Insert(index, value);
|
||||
}
|
||||
|
||||
/// <summary>Raises the Clear event.</summary>
|
||||
// Token: 0x060002D0 RID: 720 RVA: 0x00009968 File Offset: 0x00007B68
|
||||
protected override void OnClear()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Raises the Insert event.</summary>
|
||||
/// <param name="index">The index at which to insert an item. </param>
|
||||
/// <param name="value">The object to insert. </param>
|
||||
// Token: 0x060002D1 RID: 721 RVA: 0x0000996C File Offset: 0x00007B6C
|
||||
protected override void OnInsert(int index, object value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Raises the Remove event.</summary>
|
||||
/// <param name="index">The index at which to remove the item. </param>
|
||||
/// <param name="value">The object to remove. </param>
|
||||
// Token: 0x060002D2 RID: 722 RVA: 0x00009970 File Offset: 0x00007B70
|
||||
protected override void OnRemove(int index, object value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Raises the Set event.</summary>
|
||||
/// <param name="index">The index at which to set the item. </param>
|
||||
/// <param name="oldValue">The old object. </param>
|
||||
/// <param name="newValue">The new object. </param>
|
||||
// Token: 0x060002D3 RID: 723 RVA: 0x00009974 File Offset: 0x00007B74
|
||||
protected override void OnSet(int index, object oldValue, object newValue)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Raises the Validate event.</summary>
|
||||
/// <param name="value">The object to validate. </param>
|
||||
// Token: 0x060002D4 RID: 724 RVA: 0x00009978 File Offset: 0x00007B78
|
||||
protected override void OnValidate(object value)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Removes the specified <see cref="T:System.ComponentModel.Design.DesignerVerb" /> from the collection.</summary>
|
||||
/// <param name="value">The <see cref="T:System.ComponentModel.Design.DesignerVerb" /> to remove from the collection. </param>
|
||||
// Token: 0x060002D5 RID: 725 RVA: 0x0000997C File Offset: 0x00007B7C
|
||||
public void Remove(DesignerVerb value)
|
||||
{
|
||||
base.InnerList.Remove(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user