Harness proD API Help
EPLAN.Harness.API.DataStructures.RapidPrototypes Namespace / RapidFuseDefinition Class
Members Example
In This Topic
    RapidFuseDefinition Class
    In This Topic
    Definition of the rapid prototype fuse.
    Object Model
    RapidFuseDefinition ClassLengthProperty Class
    Inheritance Hierarchy

    System.Object
       EPLAN.Harness.API.DataStructures.RapidPrototypes.RapidSpecialComponentDefinition
          EPLAN.Harness.API.DataStructures.RapidPrototypes.RapidFuseDefinition

    Syntax
    public class RapidFuseDefinition : RapidSpecialComponentDefinition 
    Remarks
    Use to create a rapid prototype fuse with a different definition than the default definition in the project settings.
    Example
    This example shows how to create fuse definition with custom color, size and pin name prefix.
    RapidFuseDefinition definition = new RapidFuseDefinition();
    
    definition.Color = Color.Aqua;
    definition.PinNamePrefix = "prefix";
    definition.Size = new LengthProperty(10, Unit.Millimeter);
    Public Constructors
     NameDescription
    Public Constructor Create an instance of rapid fuse definition.  
    Top
    Public Properties
     NameDescription
    Public Property Gets or sets pin color of the rapid prototype special component. (Inherited from EPLAN.Harness.API.DataStructures.RapidPrototypes.RapidSpecialComponentDefinition)
    Public Property Gets or sets pin count of the rapid prototype special component. (Inherited from EPLAN.Harness.API.DataStructures.RapidPrototypes.RapidSpecialComponentDefinition)
    Public Property Gets or sets pin name prefix of the rapid prototype special component. (Inherited from EPLAN.Harness.API.DataStructures.RapidPrototypes.RapidSpecialComponentDefinition)
    Public Property Gets or sets size of rapid prototype special component. (Inherited from EPLAN.Harness.API.DataStructures.RapidPrototypes.RapidSpecialComponentDefinition)
    Top
    See Also