<Code Lib>
2025 Constructor
Changes 5
C

CommandMenuItem()

Description:
Initialize the item data.

public CommandMenuItem(
	string name,
	string className,
	string assemblyName
)

  • name
    The name will show on menu.
  • className
    The class name which implements IExternalCommand interface.
  • assemblyName
    The path of the assembly which contains the corresponding external command.

  • name is an empty string or contains only whitespace. -or- className is an empty string or contains only whitespace. -or- assemblyName is an empty string or contains only whitespace.
  • A non-optional argument was null

Loading…