Print Library, Svg Library, Utils Library, XYPlots
This commit is contained in:
@@ -1,27 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Volian.Print.Library
|
||||
{
|
||||
public class pkParagraph
|
||||
{
|
||||
private vlnParagraph _MyParagraph;
|
||||
public vlnParagraph MyParagraph
|
||||
{
|
||||
get { return _MyParagraph; }
|
||||
}
|
||||
private pkParagraphs _MyChildren;
|
||||
public pkParagraphs MyChildren
|
||||
{
|
||||
get { return _MyChildren; }
|
||||
}
|
||||
private pkParagraphs _MyCautionsAndNotes;
|
||||
public pkParagraphs MyCautionsAndNotes
|
||||
{
|
||||
get { return _MyCautionsAndNotes; }
|
||||
}
|
||||
public pkParagraph(vlnParagraph myParagraph)
|
||||
private readonly vlnParagraph _MyParagraph;
|
||||
public vlnParagraph MyParagraph => _MyParagraph;
|
||||
private readonly pkParagraphs _MyChildren;
|
||||
public pkParagraphs MyChildren => _MyChildren;
|
||||
private readonly pkParagraphs _MyCautionsAndNotes;
|
||||
public pkParagraphs MyCautionsAndNotes => _MyCautionsAndNotes;
|
||||
public pkParagraph(vlnParagraph myParagraph)
|
||||
{
|
||||
_MyParagraph = myParagraph;
|
||||
_MyChildren = new pkParagraphs();
|
||||
|
||||
Reference in New Issue
Block a user