menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class GridPropertyStandardValuesList - WindowsForms API Reference | Syncfusion

    Show / Hide Table of Contents

    Class GridPropertyStandardValuesList

    Internal only.

    Inheritance
    System.Object
    System.Collections.ArrayList
    GridPropertyStandardValuesList
    Implements
    System.Collections.IList
    System.Collections.ICollection
    System.Collections.IEnumerable
    System.ICloneable
    System.ComponentModel.ITypedList
    Inherited Members
    System.Collections.ArrayList.Adapter(System.Collections.IList)
    System.Collections.ArrayList.BinarySearch(System.Int32, System.Int32, System.Object, System.Collections.IComparer)
    System.Collections.ArrayList.BinarySearch(System.Object)
    System.Collections.ArrayList.BinarySearch(System.Object, System.Collections.IComparer)
    System.Collections.ArrayList.Capacity
    System.Collections.ArrayList.Clone()
    System.Collections.ArrayList.Contains(System.Object)
    System.Collections.ArrayList.CopyTo(System.Array)
    System.Collections.ArrayList.CopyTo(System.Array, System.Int32)
    System.Collections.ArrayList.CopyTo(System.Int32, System.Array, System.Int32, System.Int32)
    System.Collections.ArrayList.Count
    System.Collections.ArrayList.FixedSize(System.Collections.ArrayList)
    System.Collections.ArrayList.FixedSize(System.Collections.IList)
    System.Collections.ArrayList.GetEnumerator()
    System.Collections.ArrayList.GetEnumerator(System.Int32, System.Int32)
    System.Collections.ArrayList.GetRange(System.Int32, System.Int32)
    System.Collections.ArrayList.IndexOf(System.Object)
    System.Collections.ArrayList.IndexOf(System.Object, System.Int32)
    System.Collections.ArrayList.IndexOf(System.Object, System.Int32, System.Int32)
    System.Collections.ArrayList.IsFixedSize
    System.Collections.ArrayList.IsReadOnly
    System.Collections.ArrayList.IsSynchronized
    System.Collections.ArrayList.LastIndexOf(System.Object)
    System.Collections.ArrayList.LastIndexOf(System.Object, System.Int32)
    System.Collections.ArrayList.LastIndexOf(System.Object, System.Int32, System.Int32)
    System.Collections.ArrayList.ReadOnly(System.Collections.ArrayList)
    System.Collections.ArrayList.ReadOnly(System.Collections.IList)
    System.Collections.ArrayList.Repeat(System.Object, System.Int32)
    System.Collections.ArrayList.Reverse()
    System.Collections.ArrayList.Reverse(System.Int32, System.Int32)
    System.Collections.ArrayList.SetRange(System.Int32, System.Collections.ICollection)
    System.Collections.ArrayList.Sort()
    System.Collections.ArrayList.Sort(System.Collections.IComparer)
    System.Collections.ArrayList.Sort(System.Int32, System.Int32, System.Collections.IComparer)
    System.Collections.ArrayList.Synchronized(System.Collections.ArrayList)
    System.Collections.ArrayList.Synchronized(System.Collections.IList)
    System.Collections.ArrayList.SyncRoot
    System.Collections.ArrayList.ToArray()
    System.Collections.ArrayList.ToArray(System.Type)
    System.Collections.ArrayList.TrimToSize()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Syncfusion.Windows.Forms.Grid
    Assembly: Syncfusion.Grid.Windows.dll
    Syntax
    public class GridPropertyStandardValuesList : ArrayList, IList, ICollection, IEnumerable, ICloneable, ITypedList

    Constructors

    GridPropertyStandardValuesList(String, Type)

    Internal only.

    Declaration
    public GridPropertyStandardValuesList(string name, Type elementType)
    Parameters
    Type Name Description
    System.String name
    System.Type elementType

    Properties

    Item[Int32]

    Gets or sets the value of System.Collections.ArrayList,Internal only.

    Declaration
    public override object this[int index] { get; set; }
    Parameters
    Type Name Description
    System.Int32 index
    Property Value
    Type
    System.Object
    Overrides
    System.Collections.ArrayList.Item[System.Int32]

    Methods

    Add(Object)

    Adds the values to base collections.Internal only.

    Declaration
    public override int Add(object value)
    Parameters
    Type Name Description
    System.Object value

    The System.Object to be added to the end of the System.Collections.ArrayList. The value can be null.

    Returns
    Type Description
    System.Int32

    The System.Collections.ArrayList index at which the value has been added.

    Overrides
    System.Collections.ArrayList.Add(System.Object)

    AddRange(ICollection)

    Adds the System.Collections.ICollection values to base collections. Internal only.

    Declaration
    public override void AddRange(ICollection c)
    Parameters
    Type Name Description
    System.Collections.ICollection c
    Overrides
    System.Collections.ArrayList.AddRange(System.Collections.ICollection)

    Clear()

    Clears the base collections.Internal only.

    Declaration
    public override void Clear()
    Overrides
    System.Collections.ArrayList.Clear()

    GetItemProperties(PropertyDescriptor[])

    Internal only.Gets the property descriptor values.

    Declaration
    public PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors)
    Parameters
    Type Name Description
    System.ComponentModel.PropertyDescriptor[] listAccessors

    An array of System.ComponentModel.PropertyDescriptor objects to find in the collection as bindable. This can be null.

    Returns
    Type Description
    System.ComponentModel.PropertyDescriptorCollection

    The System.ComponentModel.PropertyDescriptorCollection that represents the properties on each item used to bind data.

    GetListName(PropertyDescriptor[])

    Internal only.Gets the List name.

    Declaration
    public string GetListName(PropertyDescriptor[] listAccessors)
    Parameters
    Type Name Description
    System.ComponentModel.PropertyDescriptor[] listAccessors

    An array of System.ComponentModel.PropertyDescriptor objects, for which the list name is returned. This can be null.

    Returns
    Type Description
    System.String

    The name of the list.

    GetMaxLength(String, CultureInfo)

    Gets the maximum length of the string.Internal only.

    Declaration
    public int GetMaxLength(string format, CultureInfo ci)
    Parameters
    Type Name Description
    System.String format

    The format.

    System.Globalization.CultureInfo ci

    The CultureInfo.

    Returns
    Type Description
    System.Int32

    returns max length

    Insert(Int32, Object)

    Adds the value at specified index.Internal only.

    Declaration
    public override void Insert(int index, object value)
    Parameters
    Type Name Description
    System.Int32 index

    At which the value need to be inserted.

    System.Object value

    The System.Object to be inserted to the System.Collections.ArrayList.

    Overrides
    System.Collections.ArrayList.Insert(System.Int32, System.Object)

    InsertRange(Int32, ICollection)

    Add the collection at specified index.Internal only.

    Declaration
    public override void InsertRange(int index, ICollection c)
    Parameters
    Type Name Description
    System.Int32 index
    System.Collections.ICollection c
    Overrides
    System.Collections.ArrayList.InsertRange(System.Int32, System.Collections.ICollection)

    Remove(Object)

    Removes a value from Arraylist.Internal only.

    Declaration
    public override void Remove(object obj)
    Parameters
    Type Name Description
    System.Object obj
    Overrides
    System.Collections.ArrayList.Remove(System.Object)

    RemoveAt(Int32)

    Removes the specified value from Array list.Internal only.

    Declaration
    public override void RemoveAt(int index)
    Parameters
    Type Name Description
    System.Int32 index
    Overrides
    System.Collections.ArrayList.RemoveAt(System.Int32)

    RemoveRange(Int32, Int32)

    Removes the collection of items from ArrayList.Internal only.

    Declaration
    public override void RemoveRange(int index, int count)
    Parameters
    Type Name Description
    System.Int32 index
    System.Int32 count
    Overrides
    System.Collections.ArrayList.RemoveRange(System.Int32, System.Int32)

    Implements

    System.Collections.IList
    System.Collections.ICollection
    System.Collections.IEnumerable
    System.ICloneable
    System.ComponentModel.ITypedList
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved