Class Outline
inhoud
[
verbergen
]Outline class
Vertegenwoordigt een omtrek.
public sealed class Outline : IndentatedNode<IOutlineChildNode>, IPageChildNode
Constructeurs
Naam | Beschrijving |
---|---|
Outline() | Initialiseert een nieuw exemplaar van hetOutline klasse. |
Eigenschappen
Naam | Beschrijving |
---|---|
DescendantsCannotBeMoved { get; set; } | Krijgt of afstammelingen van de omtrek kunnen worden verplaatst. |
Document { get; } | Haalt het document van het knooppunt op. |
FirstChild { get; } | |
HorizontalOffset { get; set; } | Haalt of stelt de horizontale offset in. |
IndentPosition { get; set; } | |
IsComposite { get; } | |
LastChild { get; } | |
LastModifiedTime { get; set; } | Haalt of stelt de laatst gewijzigde tijd in. |
MaxHeight { get; set; } | Haalt of stelt de maximale hoogte in. |
MaxWidth { get; set; } | Haalt of stelt de maximale breedte in. |
MinWidth { get; set; } | Haalt of stelt de minimale breedte in. |
NextSibling { get; } | Haalt het volgende knooppunt op op hetzelfde knooppuntboomniveau. |
NodeType { get; } | Haalt het knooppunttype op. |
ParentNode { get; } | Haalt het bovenliggende knooppunt op. |
PreviousSibling { get; } | Haalt het vorige knooppunt op hetzelfde knooppuntboomniveau. |
ReservedWidth { get; set; } | Haalt of stelt de gereserveerde breedte in. |
VerticalOffset { get; set; } | Haalt of stelt de verticale offset in. |
methoden
Naam | Beschrijving |
---|---|
override Accept(DocumentVisitor) | Accepteert de bezoeker van de node. |
virtual AppendChildFirst<T1>(T1) | |
virtual AppendChildLast<T1>(T1) | |
override GetChildNodes<T1>() | |
GetEnumerator() | |
virtual InsertChild<T1>(int, T1) | |
InsertChildrenRange(int, IEnumerable<IOutlineChildNode>) | |
InsertChildrenRange(int, params IOutlineChildNode[]) | |
RemoveChild<T1>(T1) |
Voorbeelden
Laat zien hoe een nieuwe afbeelding met tag kan worden toegevoegd.
// Het pad naar de documentenmap.
string dataDir = RunExamples.GetDataDir_Tags();
// Maak een object van de klasse Document
Document doc = new Document();
// Initialiseer het paginaklasse-object
Aspose.Note.Page page = new Aspose.Note.Page(doc);
// Initialiseer het Outline-klassenobject
Outline outline = new Outline(doc);
// Initialiseer het klasseobject OutlineElement
OutlineElement outlineElem = new OutlineElement(doc);
// Laad een afbeelding
Aspose.Note.Image image = new Aspose.Note.Image(doc, dataDir + "icon.jpg");
// Afbeelding invoegen in het documentknooppunt
outlineElem.AppendChildLast(image);
image.Tags.Add(NoteTag.CreateYellowStar());
// Voeg overzichtselementknooppunt toe
outline.AppendChildLast(outlineElem);
// Voeg overzichtsknooppunt toe
page.AppendChildLast(outline);
// Paginaknooppunt toevoegen
doc.AppendChildLast(page);
// Sla OneNote-document op
dataDir = dataDir + "AddImageNodeWithTag_out.one";
doc.Save(dataDir);
Laat zien hoe u een nieuwe lijst met Chinese nummering invoegt.
string dataDir = RunExamples.GetDataDir_Text();
// Initialiseer OneNote-document
Aspose.Note.Document doc = new Aspose.Note.Document();
// Initialiseer de OneNote-pagina
Aspose.Note.Page page = new Aspose.Note.Page(doc);
Outline outline = new Outline(doc);
// Tekststijlinstellingen toepassen
ParagraphStyle defaultStyle = new ParagraphStyle { FontColor = Color.Black, FontName = "Arial", FontSize = 10 };
// Getallen in dezelfde opbouw worden automatisch opgehoogd.
OutlineElement outlineElem1 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.ChineseCounting, "Arial", 10) };
RichText text1 = new RichText(doc) { Text = "First", ParagraphStyle = defaultStyle };
outlineElem1.AppendChildLast(text1);
//---------------------------------------------------------------------
OutlineElement outlineElem2 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.ChineseCounting, "Arial", 10) };
RichText text2 = new RichText(doc) { Text = "Second", ParagraphStyle = defaultStyle };
outlineElem2.AppendChildLast(text2);
//---------------------------------------------------------------------
OutlineElement outlineElem3 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.ChineseCounting, "Arial", 10) };
RichText text3 = new RichText(doc) { Text = "Third", ParagraphStyle = defaultStyle };
outlineElem3.AppendChildLast(text3);
//---------------------------------------------------------------------
outline.AppendChildLast(outlineElem1);
outline.AppendChildLast(outlineElem2);
outline.AppendChildLast(outlineElem3);
page.AppendChildLast(outline);
doc.AppendChildLast(page);
// Sla OneNote-document op
dataDir = dataDir + "InsertChineseNumberList_out.one";
doc.Save(dataDir);
Laat zien hoe je een nieuwe lijst met opsommingstekens invoegt.
string dataDir = RunExamples.GetDataDir_Text();
// Maak een object van de klasse Document
Aspose.Note.Document doc = new Aspose.Note.Document();
// Initialiseer het paginaklasse-object
Aspose.Note.Page page = new Aspose.Note.Page(doc);
// Initialiseer het Outline-klassenobject
Outline outline = new Outline(doc);
// Initialiseer het klasseobject TextStyle en stel opmaakeigenschappen in
ParagraphStyle defaultStyle = new ParagraphStyle { FontColor = Color.Black, FontName = "Arial", FontSize = 10 };
// Initialiseer de klasse-objecten van OutlineElement en pas opsommingstekens toe
OutlineElement outlineElem1 = new OutlineElement(doc) { NumberList = new NumberList("*", "Arial", 10) };
// Initialiseer het RichText-klasseobject en pas tekststijl toe
RichText text1 = new RichText(doc) { Text = "First", ParagraphStyle = defaultStyle };
outlineElem1.AppendChildLast(text1);
OutlineElement outlineElem2 = new OutlineElement(doc) { NumberList = new NumberList("*", "Arial", 10) };
RichText text2 = new RichText(doc) { Text = "Second", ParagraphStyle = defaultStyle };
outlineElem2.AppendChildLast(text2);
OutlineElement outlineElem3 = new OutlineElement(doc) { NumberList = new NumberList("*", "Arial", 10) };
RichText text3 = new RichText(doc) { Text = "Third", ParagraphStyle = defaultStyle };
outlineElem3.AppendChildLast(text3);
// Voeg overzichtselementen toe
outline.AppendChildLast(outlineElem1);
outline.AppendChildLast(outlineElem2);
outline.AppendChildLast(outlineElem3);
// Overzichtsknooppunt toevoegen
page.AppendChildLast(outline);
// Paginaknooppunt toevoegen
doc.AppendChildLast(page);
// Sla OneNote-document op
dataDir = dataDir + "ApplyBulletsOnText_out.one";
doc.Save(dataDir);
Laat zien hoe u een nieuwe lijst met nummering invoegt.
string dataDir = RunExamples.GetDataDir_Text();
// Maak een object van de klasse Document
Document doc = new Document();
// Initialiseer het paginaklasse-object
Aspose.Note.Page page = new Aspose.Note.Page(doc);
// Initialiseer het Outline-klassenobject
Outline outline = new Outline(doc);
// Initialiseer het klasseobject TextStyle en stel opmaakeigenschappen in
ParagraphStyle defaultStyle = new ParagraphStyle { FontColor = Color.Black, FontName = "Arial", FontSize = 10 };
// Initialiseer de klasse-objecten van OutlineElement en pas nummering toe
// Getallen in dezelfde opbouw worden automatisch opgehoogd.
OutlineElement outlineElem1 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.DecimalNumbers, "Arial", 10) };
RichText text1 = new RichText(doc) { Text = "First", ParagraphStyle = defaultStyle };
outlineElem1.AppendChildLast(text1);
OutlineElement outlineElem2 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.DecimalNumbers, "Arial", 10) };
RichText text2 = new RichText(doc) { Text = "Second", ParagraphStyle = defaultStyle };
outlineElem2.AppendChildLast(text2);
OutlineElement outlineElem3 = new OutlineElement(doc) { NumberList = new NumberList("{0})", NumberFormat.DecimalNumbers, "Arial", 10) };
RichText text3 = new RichText(doc) { Text = "Third", ParagraphStyle = defaultStyle };
outlineElem3.AppendChildLast(text3);
// Voeg overzichtselementen toe
outline.AppendChildLast(outlineElem1);
outline.AppendChildLast(outlineElem2);
outline.AppendChildLast(outlineElem3);
// Overzichtsknooppunt toevoegen
page.AppendChildLast(outline);
// Paginaknooppunt toevoegen
doc.AppendChildLast(page);
// Sla OneNote-document op
dataDir = dataDir + "ApplyNumberingOnText_out.one";
doc.Save(dataDir);
Zie ook
- class IndentatedNode<T>
- interface IOutlineChildNode
- interface IPageChildNode
- naamruimte Aspose.Note
- montage Aspose.Note