Skip to content

IMFGS List Dictionary

IMFGSOrderedDictionary Public interface

Description

Represents am ordered dictionary of objects

Diagram

flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph VGWWCoreIEx
VGWWCoreIEx.IMFGSOrderedDictionary[[IMFGSOrderedDictionary]]
class VGWWCoreIEx.IMFGSOrderedDictionary interfaceStyle;
end

Members

Properties

Public properties

TypeNameMethods
intCount
Gets the number of key/values pairs contained in the OrderedDictionary collection.
get
objectItemget, set

Methods

Public methods

ReturnsName
voidAdd(string key, object value)
Adds an entry with the specified key and value into the IMFGSOrderedDictionary collection with the lowest available index.
voidClear()
Removes all elements from the IMFGSOrderedDictionary collection.
boolContains(string key)
Determines whether the IMFGSOrderedDictionary collection contains a specific key.
string``[]GetKeys()
Gets the keys contained in the IMFGSOrderedDictionary collection as an array.
object``[]GetValues()
Gets the values contained in the IMFGSOrderedDictionary collection as an array.
voidInsert(int index, string key, object value)
Inserts a new entry into the IMFGSOrderedDictionary collection with the specified key and value at the specified index.
voidRemove(string key)
Removes the entry with the specified key from the IMFGSOrderedDictionary collection.
voidRemoveAt(int index)
Removes the entry at the specified index from the IMFGSOrderedDictionary collection.

Details

Summary

Represents am ordered dictionary of objects

Methods

Add

public void Add(string key, object value)
Arguments
TypeNameDescription
stringkeyThe key of the entry to add.
objectvalueThe value of the entry to add.
Summary

Adds an entry with the specified key and value into the IMFGSOrderedDictionary collection with the lowest available index.

Clear

public void Clear()
Summary

Removes all elements from the IMFGSOrderedDictionary collection.

Contains

public bool Contains(string key)
Arguments
TypeNameDescription
stringkeyThe key to locate in the IMFGSOrderedDictionary collection.
Summary

Determines whether the IMFGSOrderedDictionary collection contains a specific key.

Returns

true if the IMFGSOrderedDictionary collection contains an element with the specified key; otherwise, false.

GetKeys

public string GetKeys()
Summary

Gets the keys contained in the IMFGSOrderedDictionary collection as an array.

Returns

A string array of the keys in the IMFGSOrderedDictionary collection.

GetValues

public object GetValues()
Summary

Gets the values contained in the IMFGSOrderedDictionary collection as an array.

Returns

An object array of the values in the IMFGSOrderedDictionary collection.

Insert

public void Insert(int index, string key, object value)
Arguments
TypeNameDescription
intindexThe zero-based index at which the element should be inserted.
stringkeyThe key of the entry to add.
objectvalueThe value of the entry to add.
Summary

Inserts a new entry into the IMFGSOrderedDictionary collection with the specified key and value at the specified index.

Remove

public void Remove(string key)
Arguments
TypeNameDescription
stringkeyThe key of the entry to remove.
Summary

Removes the entry with the specified key from the IMFGSOrderedDictionary collection.

RemoveAt

public void RemoveAt(int index)
Arguments
TypeNameDescription
intindexThe zero-based index of the entry to remove.
Summary

Removes the entry at the specified index from the IMFGSOrderedDictionary collection.

Properties

Item

public object Item { get; set; }

Count

public int Count { get; }
Summary

Gets the number of key/values pairs contained in the OrderedDictionary collection.

Generated with ModularDoc