Click or drag to resize

PowerCorrectionAPISet Method

Sets the current power correction table from the contents of the specified file.

Namespace: RAYLASE.SPICE3.ClientLib
Assembly: RAYLASE.SPICE3.ClientLib (in RAYLASE.SPICE3.ClientLib.dll) Version: 3.4.1
Syntax
C#
public void Set(
	string localFile
)

Parameters

localFile  String
The local name of the power correction file.
Example

Transfer a Power Correction table to the card and use it forthwith:

C#
using ( ClientAPI client = new ClientAPI() )
{
    client.Connect( cardIP );    // <--- insert your card's IP address here!
    client.System.ResetToDefaults();

    client.PowerCorrection.Set(corrFileNameOnHost);

    // 
    // TODO: create and execute list(s) here...
    // 

    client.Disconnect();
}
See Also