[in] ViSession handle for the driver session.
ParameterStyleRepCap::ClearPhysicalNames
Removes all physical names from a repeated capability.
Syntax
Section titled “Syntax”static void ClearPhysicalNames(ViSession Vi);Parameters
Section titled “Parameters”Vi
Remarks
Section titled “Remarks”The ClearPhysicalNames function is used to remove physical names from a repeated capability. This can be useful for drivers that support dynamic repeated capabilities — that is, repeated capabilities where the exact number of repeated capabilities is not known upfront or where the driver exposes functions that allow the end user to control the physical names present.
Example
Section titled “Example”The following example demonstrates how a developer might use the ClearPhysicalNames function.
ViStatus _VI_FUNC acme_RemoveAllTriggerSources(ViSession Vi){ auto status = VI_SUCCESS;
status = TriggerSource::ClearPhysicalNames(Vi);
return status;}