MfListBase

Namespace ›› System ››
Parent Previous Next

MfListBase Class

(Inherits from MfEnumerableBase)

MfListBase is an abstract class and must be inherited by other classes such as MfList.
MfListBase class exposes methods and properties used for common List and array type operations.

Links

Properties, Methods

Constructors


Name

Description

Constructor()

Constructor for Abstract Class MfListBase

Properties


Name

Description

Count

Gets a value indicating if the MfListBase number of Elements.

IsFixedSize

Gets a value indicating if the MfListBase has a fixed size.

IsReadOnly

Gets a value indicating if the MfListBase is read-only.

Item[index]

Gets or sets the element at the specified index.

Methods


Name

Description

_NewEnum()

Returns a new enumerator to enumerate this object's key-value pairs. This method is usually not called directly, but by the for-loop or by GetEnumerator(). Overrides MfEnumerableBase._NewEnum()

Add(obj)

Adds an element to the end of the current instance.

AddAttribute()

Adds MfAttribute extended items to extended classes. Inherited from MfObject.

Clear()

Removes all elements from the instance and sets Count to Zero

Clone()

Abstract method. Clones all the elements of the current instance an return  a new instance.

CompareTo()

Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object. Inherited from MfObject.

Contains(obj)

Determines whether the MfListBase contains a specific element.

Copy(sourceList, destinationList, length)

Copies a range of elements from an MfListBase derived object starting at the first element and pastes them into another MfListBase object starting at the first element.

Equals(obj)

Compares obj to current instance to see if they are the same. Inherited from MfObject.

GetAttribute(index)

Gets an MfAttribute of the class. Inherited from MfObject.

GetAttributes()

Gets a MfGenericList of MfAttribute that Contains the attributes for the current class instance. Inherited from MfObject.

GetEnumerator()

Gets an enumerator. Inherited from MfEnumerableBase

IndexOf(obj)

Searches for the specified object or var and returns the index of the first occurrence within the entire instance.

Insert(index, value)

Inserts an element into the MfListBase at the specified index.

GetIndexOfAttribute(attrib)

Gets the zero-based index value of the position of MfAttribute within the instance of the class. Inherited from MfObject.

GetType()

Gets the Type for the for the Class .Inherited from MfObject.

HasAttribute(attrib)

Gets if the current instance of class derived from MfSystemException has MfAttribute. Inherited from MfObject.

Is(type)

Gets if current instance of object is of the same type. Inherited from MfObject. Inherited from MfObject.

IsInstance()

Get if the current class is an instance. Inherited from MfObject.

LastIndexOf(obj)

Searches for the specified object or var and returns the index of the last occurrence within the entire instance.

MemberwiseClone()

Creates a shallow copy of the current MfObject instance. Inherited from MfObject.

Remove(obj)

Removes the first occurrence of a specific object from the instance.

RemoveAt(index)

Removes the item at the specified index.

ToArray()

Returns a One-Based AutoHotkey array representing all the elements in the current instance.

ToString()

Gets a string representation of the object elements. Overrides MfObject.ToString()

VerifyIsInstance([ClassName, LineFile, LineNumber, Source])

Verifies the the current object is set to an instance. Inherited from MfObject.

VerifyIsNotInstance([MethodName, LineFile, LineNumber, Source])

Verifies the the current object is NOT set to an instance. Used in Static methods. Inherited from MfObject.