Class InkWord

Class InkWord

이름 공간 : Aspose.Note 모임: Aspose.Note.dll (25.4.0)

손으로 쓰여진 텍스트를 포함하는 잉크 노드를 나타냅니다.

public sealed class InkWord : InkNode, IOutlineElementChildNode, INode
   {
      private string _text;
      private Shape _shape;
      private float _baselineOffset;
      private Font _font;
      public string Text
      {
         get { return _text; }
         set { _text = value; }
      }
      public Shape Shape
      {
         get { return _shape; }
         set { _shape = value; }
      }
      public float BaselineOffset
      {
         get { return _baselineOffset; }
         set { _baselineOffset = value; }
      }
      public Font Font
      {
         get { return _font; }
         set { _font = value; }
      }
   }

Inheritance

object Node InkNode InkWord

Implements

IOutlineElementChildNode , INode

상속 회원들

Node.Accept(DocumentVisitor) , Node.Document , Node.IsComposite , Node.NodeType , Node.ParentNode , Node.PreviousSibling , Node.NextSibling , object.GetType() , object.ToString() , object.Equals(object?) , object.Equals(object?, object?) , object.ReferenceEquals(object?, object?) , object.GetHashCode()

Methods

서류 방문자 (DocumentVisitor)

노드의 방문자를 받아들인다.

public override void Accept(Aspose.Words.DocumentVisitor visitor)
   {
   }

Parameters

visitor DocumentVisitor

클래스의 개체는 Aspose.Note.DocumentVisitor에서 유래합니다.

 한국어