C# 클래스 NPlot.BaseSequencePlot

Adds additional basic functionality to BasePlot that is common to all plots that implement the ISequencePlot interface.
If C# had multiple inheritance, the heirachy would be different. The way it is isn't very nice.
상속: BasePlot, ISequencePlot
파일 보기 프로젝트 열기: mono/nplot-gtk

공개 메소드들

메소드 설명
WriteData ( System sb, RectangleD region, bool onlyInRegion ) : void

Writes text data of the plot object to the supplied string builder. It is possible to specify that only data in the specified range be written.

메소드 상세

WriteData() 공개 메소드

Writes text data of the plot object to the supplied string builder. It is possible to specify that only data in the specified range be written.
public WriteData ( System sb, RectangleD region, bool onlyInRegion ) : void
sb System the StringBuilder object to write to.
region RectangleD a region used if onlyInRegion is true.
onlyInRegion bool If true, only data enclosed in the provided region will be written.
리턴 void