ArcFM Engine Developer Guide
ArgumentType Enumeration


Used to control parsing of command line arguments.
Syntax
'Declaration
 
<FlagsAttribute()>
Public Enum ArgumentType 
   Inherits System.Enum
'Usage
 
Dim instance As ArgumentType
[Flags()]
public enum ArgumentType : System.Enum 
Members
MemberDescription
AtMostOnceThe default type for non-collection arguments. The argument is not required, but an error will be reported if it is specified more than once.
LastOccurenceWinsFor non-collection arguments, when the argument is specified more than once no error is reported and the value of the argument is the last value which occurs in the argument list.
MultipleIndicates that the argument may be specified more than once. Only valid if the argument is a collection.
MultipleUniqueThe default type for collection arguments. The argument is permitted to occur multiple times, but duplicate values will cause an error to be reported.
RequiredIndicates that this field is required. An error will be displayed if it is not present when parsing arguments.
UniqueOnly valid in conjunction with Multiple. Duplicate values will result in an error.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Miner.CommandLine.ArgumentType

Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

Miner.CommandLine Namespace

 

 


Send Comment