Class InkDrawing

Class InkDrawing

Namespace: Aspose.Note
Assembly: Aspose.Note.dll (25.6.0)

Represents a ink node containing any drawn content.

public sealed class InkDrawing : InkNode, IPageChildNode, INode
{
    public void SomeMethod(/* parameters */)
    {
    }
    private void PrivateMethod()
    {
    }
    public int MyProperty
    {
        get { return myField; }
        set { myField = value; }
    }
    private double CalculateArea()
    {
        return width * height;
    }
}

Inheritance

object Node InkNode InkDrawing

Implements

IPageChildNode , INode

Inherited Members

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()

Properties

HorizontalOffset

Gets or sets the horizontal offset.

public float HorizontalOffset
   {
      get;
      private set;
   }

Property Value

float

VerticalOffset

Gets or sets the vertical offset.

public float VerticalOffset
    {
        get;
        private set;
    }

Property Value

float

Methods

Accept(DocumentVisitor)

Accepts the visitor of the node.

public override void Accept(DocumentVisitor visitor)
   {
   }

Parameters

visitor DocumentVisitor

The object of a class derived from the Aspose.Note.DocumentVisitor.

 English