- Timestamp:
- 04/19/11 13:05:58 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/histogram/HeuristicLab.Persistence/3.3/Tests/UseCases.cs
r6027 r6028 1198 1198 public OneWayTest() { this.value = "default"; } 1199 1199 public string value; 1200 [Storable(AllowOneWay =true)]1200 [Storable(AllowOneWay = true)] 1201 1201 public string ReadOnly { 1202 1202 get { return "ReadOnly"; } 1203 1203 } 1204 [Storable(AllowOneWay =true)]1204 [Storable(AllowOneWay = true)] 1205 1205 public string WriteOnly { 1206 1206 set { this.value = value; } … … 1258 1258 public void FontTest() { 1259 1259 List<Font> fonts = new List<Font>() { 1260 new Font(FontFamily. Families.First(), 12),1260 new Font(FontFamily.GenericSansSerif, 12), 1261 1261 new Font("Times New Roman", 21, FontStyle.Bold, GraphicsUnit.Pixel), 1262 1262 new Font("Courier New", 10, FontStyle.Underline, GraphicsUnit.Document),
Note: See TracChangeset
for help on using the changeset viewer.