| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // System.Windows.Drawing.CharacterRange.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc
- //
- using System;
- namespace System.Drawing
- {
- public struct CharacterRange
- {
- private int first;
- private int length;
- public CharacterRange (int first, int length)
- {
- this.first = first;
- this.length = length;
- }
- public int First {
- get{
- return first;
- }
- set{
- first = value;
- }
- }
-
- public int Length {
- get{
- return length;
- }
- set{
- length = value;
- }
- }
- }
- }
|