Neo smartpen SDK for Windows Platform
Search Results for

    Show / Hide Table of Contents

    Class Stroke

    Represents coordinate of stroke. It consist of Dot's Collection.
    Inheritance
    object
    List<Dot>
    Stroke
    Implements
    IList<Dot>
    ICollection<Dot>
    IList
    ICollection
    IReadOnlyList<Dot>
    IReadOnlyCollection<Dot>
    IEnumerable<Dot>
    IEnumerable
    Inherited Members
    List<Dot>.AddRange(IEnumerable<Dot>)
    List<Dot>.AsReadOnly()
    List<Dot>.BinarySearch(int, int, Dot, IComparer<Dot>)
    List<Dot>.BinarySearch(Dot)
    List<Dot>.BinarySearch(Dot, IComparer<Dot>)
    List<Dot>.Clear()
    List<Dot>.Contains(Dot)
    List<Dot>.ConvertAll<TOutput>(Converter<Dot, TOutput>)
    List<Dot>.CopyTo(Dot[])
    List<Dot>.CopyTo(int, Dot[], int, int)
    List<Dot>.CopyTo(Dot[], int)
    List<Dot>.Exists(Predicate<Dot>)
    List<Dot>.Find(Predicate<Dot>)
    List<Dot>.FindAll(Predicate<Dot>)
    List<Dot>.FindIndex(Predicate<Dot>)
    List<Dot>.FindIndex(int, Predicate<Dot>)
    List<Dot>.FindIndex(int, int, Predicate<Dot>)
    List<Dot>.FindLast(Predicate<Dot>)
    List<Dot>.FindLastIndex(Predicate<Dot>)
    List<Dot>.FindLastIndex(int, Predicate<Dot>)
    List<Dot>.FindLastIndex(int, int, Predicate<Dot>)
    List<Dot>.ForEach(Action<Dot>)
    List<Dot>.GetEnumerator()
    List<Dot>.GetRange(int, int)
    List<Dot>.IndexOf(Dot)
    List<Dot>.IndexOf(Dot, int)
    List<Dot>.IndexOf(Dot, int, int)
    List<Dot>.Insert(int, Dot)
    List<Dot>.InsertRange(int, IEnumerable<Dot>)
    List<Dot>.LastIndexOf(Dot)
    List<Dot>.LastIndexOf(Dot, int)
    List<Dot>.LastIndexOf(Dot, int, int)
    List<Dot>.Remove(Dot)
    List<Dot>.RemoveAll(Predicate<Dot>)
    List<Dot>.RemoveAt(int)
    List<Dot>.RemoveRange(int, int)
    List<Dot>.Reverse()
    List<Dot>.Reverse(int, int)
    List<Dot>.Sort()
    List<Dot>.Sort(IComparer<Dot>)
    List<Dot>.Sort(int, int, IComparer<Dot>)
    List<Dot>.Sort(Comparison<Dot>)
    List<Dot>.ToArray()
    List<Dot>.TrimExcess()
    List<Dot>.TrueForAll(Predicate<Dot>)
    List<Dot>.Capacity
    List<Dot>.Count
    List<Dot>.this[int]
    object.Equals(object)
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    Namespace: Neosmartpen.Net
    Assembly: Neosmartpen.Net.dll
    Syntax
    public class Stroke : List<Dot>, IList<Dot>, ICollection<Dot>, IList, ICollection, IReadOnlyList<Dot>, IReadOnlyCollection<Dot>, IEnumerable<Dot>, IEnumerable

    Constructors

    | Edit this page View Source

    Stroke(int, int, int, int)

    A constructor that constructs a Stroke object
    Declaration
    public Stroke(int section, int owner, int note, int page)
    Parameters
    Type Name Description
    int section The Section Id of the NCode paper
    int owner The Owner Id of the NCode paper
    int note The Note Id of the NCode paper
    int page The Page Number of the NCode paper

    Properties

    | Edit this page View Source

    Color

    Gets the color of the stroke
    Declaration
    public int Color { get; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    Note

    Gets the Note Id of the NCode paper
    Declaration
    public int Note { get; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    Owner

    Gets the Owner Id of the NCode paper
    Declaration
    public int Owner { get; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    Page

    Gets the Page Number of the NCode paper
    Declaration
    public int Page { get; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    Section

    Gets the Section Id of the NCode paper
    Declaration
    public int Section { get; }
    Property Value
    Type Description
    int
    | Edit this page View Source

    TimeEnd

    Gets the timestamp of end point
    Declaration
    public long TimeEnd { get; }
    Property Value
    Type Description
    long
    | Edit this page View Source

    TimeStart

    Gets the timestamp of start point
    Declaration
    public long TimeStart { get; }
    Property Value
    Type Description
    long

    Methods

    | Edit this page View Source

    Add(Dot)

    Adds a new Dot to the current Stroke object.
    Declaration
    public void Add(Dot dot)
    Parameters
    Type Name Description
    Dot dot Dot object
    | Edit this page View Source

    ToString()

    Returns a string that represents the current object.
    Declaration
    public override string ToString()
    Returns
    Type Description
    string A string that represents the current object.
    Overrides
    object.ToString()

    Implements

    IList<T>
    ICollection<T>
    IList
    ICollection
    IReadOnlyList<T>
    IReadOnlyCollection<T>
    IEnumerable<T>
    IEnumerable
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX