コード例 #1
0
ファイル: Ink.cs プロジェクト: zzxxhhzxh/RssBandit
 /// <summary>
 /// Constructs a new <see cref="InkObject"/> object containing the ISF data
 /// in the given byte array.
 /// </summary>
 /// <param name="isf">The byte array containing our ink data.</param>
 public InkObject(byte[] isf)
 {
     Ink = new InkContent(isf);
 }
コード例 #2
0
ファイル: Ink.cs プロジェクト: zzxxhhzxh/RssBandit
 /// <summary>
 /// Constructs a new <see cref="InkContent"/> object containing the ISF data copied
 /// from the specified InkContent.
 /// </summary>
 /// <param name="clone">The <see cref="InkContent"/> whose data is to be copied to
 /// the new InkContent.</param>
 public InkContent(InkContent clone)
 {
     InkData = clone.InkData;
 }
コード例 #3
0
ファイル: Ink.cs プロジェクト: zzxxhhzxh/RssBandit
 /// <summary>
 /// Constructs a new <see cref="InkObject"/> contaning the ink data
 /// in the specified file.
 /// </summary>
 /// <param name="file">
 /// The <see cref="FileInfo"/> containing our data in ISF format.
 /// </param>
 public InkObject(FileInfo file)
 {
     Ink = new InkContent(file);
 }