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
파일 보기 프로젝트 열기: mcneel/Rhino4Samples_DotNet 1 사용 예제들

공개 메소드들

메소드 설명
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