Name

CharacterRange

Synopsis

This value type is used to define a range of characters within a string, by specifying the starting character and the length of the substring.


public struct CharacterRange {

// Public Constructors

   public CharacterRange(int First, int Length);

// Public Instance Properties

   public int First{set; get; }

   public int Length{set; get; }

}

Hierarchy

System.Object System.ValueType CharacterRange

Passed To

StringFormat.SetMeasurableCharacterRanges()

Get .NET Windows Forms in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.