Advertisement
joapaspe

Strokes and Stroke

Mar 16th, 2012
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1.  string info = "";
  2.  
  3.             info += String.Format("There are {0} strokes.\n", inkOverlay.Ink.Strokes.Count);
  4.             foreach(Stroke stroke in inkOverlay.Ink.Strokes){
  5.                 info+= String.Format("Stroke has {0} points.\n",stroke.GetPoints().Length);
  6.             }
  7.  
  8.             MessageBox.Show(info);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement