Click or drag to resize

VoltageDifferenceProbe Class

Voltage Difference Probe class for the API
Inheritance Hierarchy
SystemObject
  ema3d.Api.V25APISimObjectBaseVoltageDifferenceProbe
    ema3d.Api.V25.Core.ProbesFDTDProbeBaseVoltageDifferenceProbe
      ema3d.Api.V25.Core.ProbesVoltageDifferenceProbe

Namespace: ema3d.Api.V25.Core.Probes
Assembly: ema3d.Api.V25 (in ema3d.Api.V25.dll) Version: 0.0.0.0
Syntax
public sealed class VoltageDifferenceProbe : FDTDProbeBase<VoltageDifferenceProbe>

The VoltageDifferenceProbe type exposes the following members.

Properties
 NameDescription
Public propertyDisplayName Gets/Sets the display name of the underlying sim object.
(Inherited from APISimObjectBaseTWrapper)
Public propertyDocument The document an object exists in.
(Inherited from FDTDProbeBaseT)
Public propertyMeasure Gets/Sets end reference location of probe.
Public propertyReference Gets/Sets start reference location of probe.
Public propertyTEnd Gets/Sets end time.
(Inherited from FDTDProbeBaseT)
Public propertyTStart Gets/Sets start time.
(Inherited from FDTDProbeBaseT)
Public propertyTStep Gets/Sets time step.
(Inherited from FDTDProbeBaseT)
Top
Methods
 NameDescription
Public methodStatic memberCreate Create a BulkCurrentProbe with ICurvePoint
Public methodDelete Deletes sim object.
(Inherited from APISimObjectBaseTWrapper)
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodStatic memberGetAll Retrieve all VoltageDifferenceProbe objects in the document.
Public methodStatic memberGetByDisplayName Get BoxFieldProbe by display name
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetName Returns the name of the object.
(Inherited from APISimObjectBaseTWrapper)
Public methodGetSiblings Get all objects that share this object's type in the document.
(Overrides APISimObjectBaseTWrapperGetSiblings(Document))
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodSetName Sets the name of the object
(Inherited from APISimObjectBaseTWrapper)
Public methodSetVisibility Sets the visibility status of the object.
(Inherited from APISimObjectBaseTWrapper)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Example
Python
from ema3d.Api.V25.Core.Probes import VoltageDifferenceProbe as VoltageDifferenceProbe

# create a point
point1 = Point.Create(MM(30), MM(30), MM(30))
point2 = Point.Create(MM(0), MM(0), MM(0))
result = SketchCurve.Create(point)
icp = result.CreatedCurves[0].GetChildren[ICurvePoint]()
# Create Curve
_pf = VoltageDifferenceProbe.Create(Window.ActiveWindow.Document,
                                    icp[0], icp[1])
See Also