C# Class SampleCsExportMesh.SampleCsExportMeshPlugIn

Every Rhino.NET Plug-In must have one and only one MRhinoPlugIn derived class. DO NOT create an instance of this class. It is the responsibility of Rhino.NET to create an instance of this class and register it with Rhino.
Inheritance: RMA.Rhino.MRhinoFileExportPlugIn
Afficher le fichier Open project: mcneel/Rhino4Samples_DotNet

Méthodes publiques

Méthode Description
AddFileType ( ArrayMRhinoFileType &extensions, IRhinoFileWriteOptions &opts ) : void

When Rhino gets ready to display either the save or export file dialog, it calls AddFileType() once for each loaded file export plug-in.

OnLoadPlugIn ( ) : int

Called after the plug-in is loaded and the constructor has been run. This is a good place to perform any significant initialization, license checking, and so on. This function must return 1 for the plug-in to continue to load.

OnUnloadPlugIn ( ) : void

Called when the plug-in is about to be unloaded. After this function is called, the plug-in will be disposed.

PlugInID ( ) : System.Guid

Rhino tracks plug-ins by their unique ID. Every plug-in must have a unique id. The Guid created by the project wizard is unique. You can create more Guids using the "Create Guid" tool in the Tools menu.

PlugInName ( ) : string
PlugInVersion ( ) : string
SampleCsExportMeshPlugIn ( ) : System

Public constructor

WriteFile ( string filename, int index, MRhinoDoc &doc, IRhinoFileWriteOptions &options ) : int

Rhino calls WriteFile() to write document geometry to an external file.

Method Details

AddFileType() public méthode

When Rhino gets ready to display either the save or export file dialog, it calls AddFileType() once for each loaded file export plug-in.
public AddFileType ( ArrayMRhinoFileType &extensions, IRhinoFileWriteOptions &opts ) : void
extensions ArrayMRhinoFileType
opts IRhinoFileWriteOptions
Résultat void

OnLoadPlugIn() public méthode

Called after the plug-in is loaded and the constructor has been run. This is a good place to perform any significant initialization, license checking, and so on. This function must return 1 for the plug-in to continue to load.
public OnLoadPlugIn ( ) : int
Résultat int

OnUnloadPlugIn() public méthode

Called when the plug-in is about to be unloaded. After this function is called, the plug-in will be disposed.
public OnUnloadPlugIn ( ) : void
Résultat void

PlugInID() public méthode

Rhino tracks plug-ins by their unique ID. Every plug-in must have a unique id. The Guid created by the project wizard is unique. You can create more Guids using the "Create Guid" tool in the Tools menu.
public PlugInID ( ) : System.Guid
Résultat System.Guid

PlugInName() public méthode

public PlugInName ( ) : string
Résultat string

PlugInVersion() public méthode

public PlugInVersion ( ) : string
Résultat string

SampleCsExportMeshPlugIn() public méthode

Public constructor
public SampleCsExportMeshPlugIn ( ) : System
Résultat System

WriteFile() public méthode

Rhino calls WriteFile() to write document geometry to an external file.
public WriteFile ( string filename, int index, MRhinoDoc &doc, IRhinoFileWriteOptions &options ) : int
filename string
index int
doc MRhinoDoc
options IRhinoFileWriteOptions
Résultat int