Class Params
Assembly: Reportman.Reporting.dll
Syntax
[JsonConverter(typeof(ParamsConverter))]
public class Params : IEnumerable, ICloneable
Constructors
Params()
Declaration
Properties
Count
Declaration
public int Count { get; }
Property Value
this[int]
Declaration
public Param this[int index] { get; set; }
Parameters
| Type |
Name |
Description |
| int |
index |
|
Property Value
this[string]
Declaration
public Param this[string paramname] { get; }
Parameters
| Type |
Name |
Description |
| string |
paramname |
|
Property Value
Methods
Add(Param)
Declaration
public void Add(Param obj)
Parameters
| Type |
Name |
Description |
| Param |
obj |
|
Clear()
Declaration
Clone()
Declaration
Returns
Clone(Report)
Declaration
public Params Clone(Report rp)
Parameters
| Type |
Name |
Description |
| Report |
rp |
|
Returns
GetEnumerator()
Declaration
public IEnumerator GetEnumerator()
Returns
IndexOf(Param)
Declaration
public int IndexOf(Param avalue)
Parameters
| Type |
Name |
Description |
| Param |
avalue |
|
Returns
IndexOf(string)
Declaration
public int IndexOf(string avalue)
Parameters
| Type |
Name |
Description |
| string |
avalue |
|
Returns
Insert(int, Param)
Declaration
public void Insert(int insertIndex, Param obj)
Parameters
| Type |
Name |
Description |
| int |
insertIndex |
|
| Param |
obj |
|
Remove(Param)
Declaration
public void Remove(Param nparam)
Parameters
| Type |
Name |
Description |
| Param |
nparam |
|
RemoveAt(int)
Declaration
public void RemoveAt(int index)
Parameters
| Type |
Name |
Description |
| int |
index |
|
Swap(int, int)
Declaration
public void Swap(int index1, int index2)
Parameters
| Type |
Name |
Description |
| int |
index1 |
|
| int |
index2 |
|
Switch(int, int)
Declaration
public void Switch(int index1, int index2)
Parameters
| Type |
Name |
Description |
| int |
index1 |
|
| int |
index2 |
|
Implements