C# Класс SampleCsCommands.SampleCsSaveView

A Rhino.NET plug-in can contain as many MRhinoCommand derived classes as it wants. DO NOT create an instance of this class (this is the responsibility of Rhino.NET.)
Наследование: RMA.Rhino.MRhinoCommand
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CommandUUID ( ) : System.Guid

Rhino tracks commands by their unique ID. Every command 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.

EnglishCommandName ( ) : string
PopView ( ) : On3dmView

Pops a saved view off of the saved view stack

RunCommand ( IRhinoCommandContext context ) : IRhinoCommand.result

This gets called when when the user runs this command.

SampleCsSaveView ( ) : System

Public constructor

Описание методов

CommandUUID() публичный Метод

Rhino tracks commands by their unique ID. Every command 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 CommandUUID ( ) : System.Guid
Результат System.Guid

EnglishCommandName() публичный Метод

public EnglishCommandName ( ) : string
Результат string

PopView() публичный Метод

Pops a saved view off of the saved view stack
public PopView ( ) : On3dmView
Результат On3dmView

RunCommand() публичный Метод

This gets called when when the user runs this command.
public RunCommand ( IRhinoCommandContext context ) : IRhinoCommand.result
context IRhinoCommandContext
Результат IRhinoCommand.result

SampleCsSaveView() публичный Метод

Public constructor
public SampleCsSaveView ( ) : System
Результат System