Description
IAgSnCustomPattern Interface for custom sensor patterns.
Public Properties
Interfaces
CoClasses that Implement IAgSnCustomPattern
Example
Define a custom sensor
| [C#] |
|---|
// Set pattern type to Custom
IAgSnCustomPattern customPattern = sensor.CommonTasks.SetPatternCustom(sensorPatternPath);
customPattern.AngularResolution = 6.0;
customPattern.UseNativeResolution = false;
|
|
Define a custom sensor
| [Visual Basic .NET] |
|---|
' Set pattern type to Custom
Dim customPattern As IAgSnCustomPattern = sensor.CommonTasks.SetPatternCustom(sensorPatternPath)
customPattern.AngularResolution = 6
customPattern.UseNativeResolution = False
|
|