Wavecom W-BitView V2.5.00 User Manual
Page 78
72
Custom Library
BitView Manual V2.5.00 WAVECOM W-BV
// ...
// results from calculation function
private int outpar1 = 0;
///
/// Optional result form this function! Put all results into the calculation category
///
[Category(PropertyCategory.Calculation)]
[Description("Description of Output 1 goes here.")]
[DisplayName("Output 1")]
public int Outpar1
{
get
{
return outpar1;
}
}
private int outpar2 = 0;
///
/// Optional result form this function! Put all results into the calculation category
///
[Category(PropertyCategory.Calculation)]
[Description("Description of Output 2 goes here.")]
[DisplayName("Output 2")]
public int Outpar2
{
get
{
return outpar2;
}
}
private int outpar3 = 0;
///
/// Optional result form this function! Put all results into the calculation category
///
[Category(PropertyCategory.Calculation)]
[Description("Description of Output 3 goes here.")]
[DisplayName("Output 3")]
public int Outpar3
{
get
{
return outpar3;
}
}
private int outpar4 = 0;
///
/// Optional result form this function! Put all results into the calculation category
///
[Category(PropertyCategory.Calculation)]
[Description("Description of Output 4 goes here.")]
[DisplayName("Output 4")]
public int Outpar4
{
get
{
return outpar4;
}
}
private string outpar5 = string.Empty;
///
/// Optional result form this function! Put all results into this category
///
[Category(PropertyCategory.Calculation)]
[Description("Description of Output 5 (string) goes here.")]
[DisplayName("Output 5")]
public string Outpar5
{