Example #1
0
 public bool SetAttributes(PageSetupKey key, object value)
 {
     try { aryKey[(int)key] = value; return(true); }
     catch { return(false); }
 }
Example #2
0
 public object GetAttributes(PageSetupKey key)
 {
     try { return(aryKey[(int)key]); }
     catch { return(default(object)); }
 }