SYMBOL INDEX (7807 symbols across 793 files) FILE: DataProviders/BaseDataParameter.cs class BaseDataParameter (line 11) | public class BaseDataParameter : IDbDataParameter method BaseDataParameter (line 16) | public BaseDataParameter() FILE: DataProviders/DataParameterCollection.cs class DataParameterCollection (line 11) | public class DataParameterCollection : IDataParameterCollection method DataParameterCollection (line 15) | public DataParameterCollection() method RemoveAt (line 40) | public void RemoveAt(string parameterName) method Contains (line 45) | public bool Contains(string parameterName) method IndexOf (line 50) | public int IndexOf(string parameterName) method RemoveAt (line 86) | void System.Collections.IList.RemoveAt(int index) method Insert (line 91) | public void Insert(int index, object value) method Remove (line 96) | public void Remove(object value) method Contains (line 101) | bool System.Collections.IList.Contains(object value) method Clear (line 106) | public void Clear() method IndexOf (line 111) | int System.Collections.IList.IndexOf(object value) method Add (line 116) | public int Add(object value) method CopyTo (line 149) | public void CopyTo(Array array, int index) method GetEnumerator (line 166) | public System.Collections.IEnumerator GetEnumerator() FILE: DataProviders/DictionaryDataReader.cs class DictionaryDataReader (line 8) | public class DictionaryDataReader : IDataReader method DictionaryDataReader (line 15) | public DictionaryDataReader(List> data) method GetOrdinal (line 37) | public int GetOrdinal(string name) method Read (line 45) | public bool Read() => ++_currentRow < _data.Count; method GetName (line 47) | public string GetName(int i) => _fieldNames[i]; method GetValue (line 49) | public object GetValue(int i) method GetValues (line 56) | public int GetValues(object[] values) method IsDBNull (line 67) | public bool IsDBNull(int i) => GetValue(i) == DBNull.Value; method GetFieldType (line 70) | public Type GetFieldType(int i) => GetValue(i)?.GetType() ?? typeof(ob... method Close (line 73) | public void Close() { } method Dispose (line 74) | public void Dispose() { } method NextResult (line 75) | public bool NextResult() => false; method GetSchemaTable (line 81) | public DataTable GetSchemaTable() method GetBoolean (line 112) | public bool GetBoolean(int i) => (bool)GetValue(i); method GetByte (line 113) | public byte GetByte(int i) => (byte)GetValue(i); method GetBytes (line 115) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetChar (line 132) | public char GetChar(int i) => (char)GetValue(i); method GetChars (line 134) | public long GetChars(int i, long fieldOffset, char[] buffer, int buffe... method GetData (line 163) | public IDataReader GetData(int i) method GetDataTypeName (line 194) | public string GetDataTypeName(int i) => GetFieldType(i).Name; method GetDateTime (line 195) | public DateTime GetDateTime(int i) => (DateTime)GetValue(i); method GetDecimal (line 196) | public decimal GetDecimal(int i) => (decimal)GetValue(i); method GetDouble (line 197) | public double GetDouble(int i) => (double)GetValue(i); method GetFloat (line 198) | public float GetFloat(int i) => (float)GetValue(i); method GetGuid (line 199) | public Guid GetGuid(int i) => (Guid)GetValue(i); method GetInt16 (line 200) | public short GetInt16(int i) => (short)GetValue(i); method GetInt32 (line 201) | public int GetInt32(int i) => (int)GetValue(i); method GetInt64 (line 202) | public long GetInt64(int i) => (long)GetValue(i); method GetString (line 203) | public string GetString(int i) => GetValue(i)?.ToString(); FILE: DataProviders/FileDirCommand.cs class FileDirCommand (line 12) | public class FileDirCommand : IDbCommand method FileDirCommand (line 23) | public FileDirCommand(FileDirConnection conn) method Cancel (line 108) | public void Cancel() method Prepare (line 113) | public void Prepare() method ExecuteReader (line 130) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 138) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 143) | public object ExecuteScalar() method ExecuteNonQuery (line 148) | public int ExecuteNonQuery() method CreateParameter (line 165) | public IDbDataParameter CreateParameter() method Dispose (line 263) | public void Dispose() FILE: DataProviders/FileDirConnection.cs class FileDirConnection (line 11) | public class FileDirConnection : IDbConnection method FileDirConnection (line 16) | public FileDirConnection(string conn) method ChangeDatabase (line 34) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 39) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 44) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 77) | public IDbCommand CreateCommand() method Open (line 82) | public void Open() method Close (line 87) | public void Close() method Dispose (line 112) | public void Dispose() FILE: DataProviders/FileDirDataParameter.cs class FileDirDataParameter (line 11) | public class FileDirDataParameter : BaseDataParameter method FileDirDataParameter (line 13) | public FileDirDataParameter():base() FILE: DataProviders/FileDirDataReader.cs class FileDirDataReader (line 14) | public class FileDirDataReader : IDataReader method FileDirDataReader (line 44) | static FileDirDataReader() method FileDirDataReader (line 77) | public FileDirDataReader(System.Data.CommandBehavior behavior, FileDir... method PopulateData (line 101) | long PopulateData(DirectoryInfo di, int parent) method NextResult (line 176) | public bool NextResult() method Close (line 181) | public void Close() method Read (line 188) | public bool Read() method GetSchemaTable (line 206) | public DataTable GetSchemaTable() method Dispose (line 215) | public void Dispose() method GetInt32 (line 224) | public int GetInt32(int i) method GetValue (line 246) | public object GetValue(int i) method IsDBNull (line 251) | public bool IsDBNull(int i) method GetBytes (line 256) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetByte (line 261) | public byte GetByte(int i) method GetFieldType (line 266) | public Type GetFieldType(int i) method GetDecimal (line 271) | public decimal GetDecimal(int i) method GetValues (line 276) | public int GetValues(object[] values) method GetName (line 287) | public string GetName(int i) method GetInt64 (line 300) | public long GetInt64(int i) method GetDouble (line 305) | public double GetDouble(int i) method GetBoolean (line 310) | public bool GetBoolean(int i) method GetGuid (line 315) | public Guid GetGuid(int i) method GetDateTime (line 320) | public DateTime GetDateTime(int i) method GetOrdinal (line 325) | public int GetOrdinal(string name) method GetDataTypeName (line 349) | public string GetDataTypeName(int i) method GetFloat (line 355) | public float GetFloat(int i) method GetData (line 360) | public IDataReader GetData(int i) method GetChars (line 365) | public long GetChars(int i, long fieldoffset, char[] buffer, int buffe... method GetString (line 370) | public string GetString(int i) method GetChar (line 375) | public char GetChar(int i) method GetInt16 (line 380) | public short GetInt16(int i) FILE: DataProviders/FilteredDictionaryDataReader.cs class FilteredDictionaryDataReader (line 6) | public class FilteredDictionaryDataReader : IDataReader method FilteredDictionaryDataReader (line 12) | public FilteredDictionaryDataReader(DictionaryDataReader reader, strin... method GetName (line 27) | public string GetName(int i) => _columnNames[i]; method GetOrdinal (line 28) | public int GetOrdinal(string name) => Array.IndexOf(_columnNames, name); method GetValue (line 31) | public object GetValue(int i) => _innerReader.GetValue(_columnMap[i]); method GetFieldType (line 32) | public Type GetFieldType(int i) => _innerReader.GetFieldType(_columnMa... method Read (line 39) | public bool Read() => _innerReader.Read(); method Close (line 40) | public void Close() => _innerReader.Close(); method Dispose (line 41) | public void Dispose() => _innerReader.Dispose(); method NextResult (line 42) | public bool NextResult() => _innerReader.NextResult(); method GetValues (line 47) | public int GetValues(object[] values) method IsDBNull (line 59) | public bool IsDBNull(int i) => _innerReader.IsDBNull(_columnMap[i]); method GetBoolean (line 60) | public bool GetBoolean(int i) => _innerReader.GetBoolean(_columnMap[i]); method GetByte (line 61) | public byte GetByte(int i) => _innerReader.GetByte(_columnMap[i]); method GetBytes (line 63) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetChar (line 66) | public char GetChar(int i) => _innerReader.GetChar(_columnMap[i]); method GetChars (line 68) | public long GetChars(int i, long fieldOffset, char[] buffer, int buffe... method GetData (line 71) | public IDataReader GetData(int i) => _innerReader.GetData(_columnMap[i]); method GetDataTypeName (line 72) | public string GetDataTypeName(int i) => _innerReader.GetDataTypeName(_... method GetDateTime (line 73) | public DateTime GetDateTime(int i) => _innerReader.GetDateTime(_column... method GetDecimal (line 74) | public decimal GetDecimal(int i) => _innerReader.GetDecimal(_columnMap... method GetDouble (line 75) | public double GetDouble(int i) => _innerReader.GetDouble(_columnMap[i]); method GetFloat (line 76) | public float GetFloat(int i) => _innerReader.GetFloat(_columnMap[i]); method GetGuid (line 77) | public Guid GetGuid(int i) => _innerReader.GetGuid(_columnMap[i]); method GetInt16 (line 78) | public short GetInt16(int i) => _innerReader.GetInt16(_columnMap[i]); method GetInt32 (line 79) | public int GetInt32(int i) => _innerReader.GetInt32(_columnMap[i]); method GetInt64 (line 80) | public long GetInt64(int i) => _innerReader.GetInt64(_columnMap[i]); method GetString (line 81) | public string GetString(int i) => _innerReader.GetString(_columnMap[i]); method GetSchemaTable (line 83) | public DataTable GetSchemaTable() FILE: DataProviders/GedcomCommand.cs class GedcomCommand (line 12) | public class GedcomCommand : IDbCommand method GedcomCommand (line 20) | public GedcomCommand(GedcomConnection conn) method Cancel (line 45) | public void Cancel() method Prepare (line 50) | public void Prepare() method ExecuteReader (line 67) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 75) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 80) | public object ExecuteScalar() method ExecuteNonQuery (line 85) | public int ExecuteNonQuery() method CreateParameter (line 102) | public IDbDataParameter CreateParameter() method Dispose (line 191) | public void Dispose() FILE: DataProviders/GedcomConnection.cs class GedcomConnection (line 11) | public class GedcomConnection : IDbConnection method GedcomConnection (line 15) | public GedcomConnection(string conn) method ChangeDatabase (line 27) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 32) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 37) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 71) | public IDbCommand CreateCommand() method Open (line 76) | public void Open() method Close (line 81) | public void Close() method Dispose (line 106) | public void Dispose() FILE: DataProviders/GedcomDataParameter.cs class GedcomDataParameter (line 11) | public class GedcomDataParameter : BaseDataParameter method GedcomDataParameter (line 13) | public GedcomDataParameter():base() FILE: DataProviders/GedcomDataReader.cs class GedcomDataReader (line 14) | public class GedcomDataReader : IDataReader method GedcomDataReader (line 40) | public GedcomDataReader(System.Data.CommandBehavior behavior, GedcomCo... method NextResult (line 72) | public bool NextResult() method Close (line 77) | public void Close() method Read (line 87) | public bool Read() method GetDateTime (line 181) | object GetDateTime(string v) method GetSchemaTable (line 242) | public DataTable GetSchemaTable() method Dispose (line 251) | public void Dispose() method GetInt32 (line 260) | public int GetInt32(int i) method GetValue (line 282) | public object GetValue(int i) method IsDBNull (line 287) | public bool IsDBNull(int i) method GetBytes (line 292) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetByte (line 297) | public byte GetByte(int i) method GetFieldType (line 302) | public Type GetFieldType(int i) method GetDecimal (line 307) | public decimal GetDecimal(int i) method GetValues (line 312) | public int GetValues(object[] values) method GetName (line 323) | public string GetName(int i) method GetInt64 (line 336) | public long GetInt64(int i) method GetDouble (line 341) | public double GetDouble(int i) method GetBoolean (line 346) | public bool GetBoolean(int i) method GetGuid (line 351) | public Guid GetGuid(int i) method GetDateTime (line 356) | public DateTime GetDateTime(int i) method GetOrdinal (line 361) | public int GetOrdinal(string name) method GetDataTypeName (line 385) | public string GetDataTypeName(int i) method GetFloat (line 391) | public float GetFloat(int i) method GetData (line 396) | public IDataReader GetData(int i) method GetChars (line 401) | public long GetChars(int i, long fieldoffset, char[] buffer, int buffe... method GetString (line 406) | public string GetString(int i) method GetChar (line 411) | public char GetChar(int i) method GetInt16 (line 416) | public short GetInt16(int i) FILE: DataProviders/HttpClientExtension.cs class HttpClientExtension (line 10) | internal static class HttpClientExtension method AddMajorsilenceReportingUserAgent (line 12) | public static void AddMajorsilenceReportingUserAgent(this HttpClient c... FILE: DataProviders/JsonCommand.cs class JsonCommand (line 12) | public class JsonCommand : IDbCommand method JsonCommand (line 20) | public JsonCommand(JsonConnection conn) method Cancel (line 56) | public void Cancel() method Prepare (line 61) | public void Prepare() method ExecuteReader (line 77) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 85) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 90) | public object ExecuteScalar() method ExecuteNonQuery (line 95) | public int ExecuteNonQuery() method CreateParameter (line 112) | public IDbDataParameter CreateParameter() method Dispose (line 202) | public void Dispose() FILE: DataProviders/JsonConnection.cs class JsonConnection (line 12) | public class JsonConnection : IDbConnection method JsonConnection (line 32) | public JsonConnection(string conn) : this(conn, new HttpClient()) method JsonConnection (line 37) | public JsonConnection(string conn, HttpClient httpClient) method ChangeDatabase (line 61) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 66) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 71) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 97) | public IDbCommand CreateCommand() method Open (line 102) | public void Open() method Close (line 107) | public void Close() method SetUrlFromConnection (line 130) | private void SetUrlFromConnection() method Dispose (line 171) | public void Dispose() FILE: DataProviders/JsonDataReader.cs class JsonDataReader (line 13) | public class JsonDataReader : IDataReader method JsonDataReader (line 23) | public JsonDataReader(System.Data.CommandBehavior behavior, JsonConnec... method GetTable (line 62) | public IDataReader? GetTable(string name) => method Read (line 71) | public bool Read() => _rootReader.Read(); method GetName (line 73) | public string GetName(int i) => _rootReader.GetName(i); method GetOrdinal (line 74) | public int GetOrdinal(string name) => _rootReader.GetOrdinal(name); method GetValue (line 75) | public object GetValue(int i) => _rootReader.GetValue(i); method GetValues (line 77) | public int GetValues(object[] values) method IsDBNull (line 84) | public bool IsDBNull(int i) => _rootReader.IsDBNull(i); method GetFieldType (line 85) | public Type GetFieldType(int i) => _rootReader.GetFieldType(i); method Close (line 87) | public void Close() => _rootReader.Close(); method Dispose (line 88) | public void Dispose() => _rootReader.Dispose(); method NextResult (line 89) | public bool NextResult() => false; method GetSchemaTable (line 94) | public DataTable GetSchemaTable() => _rootReader.GetSchemaTable(); method GetBoolean (line 95) | public bool GetBoolean(int i) => (bool)GetValue(i); method GetByte (line 96) | public byte GetByte(int i) => (byte)GetValue(i); method GetBytes (line 98) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetChar (line 101) | public char GetChar(int i) => (char)GetValue(i); method GetChars (line 103) | public long GetChars(int i, long fieldoffset, char[] buffer, int buffe... method GetData (line 106) | public IDataReader GetData(int i) => _rootReader.GetData(i); method GetDataTypeName (line 107) | public string GetDataTypeName(int i) => GetFieldType(i).Name; method GetDateTime (line 108) | public DateTime GetDateTime(int i) => (DateTime)GetValue(i); method GetDecimal (line 109) | public decimal GetDecimal(int i) => (decimal)GetValue(i); method GetDouble (line 110) | public double GetDouble(int i) => (double)GetValue(i); method GetFloat (line 111) | public float GetFloat(int i) => (float)GetValue(i); method GetGuid (line 112) | public Guid GetGuid(int i) => (Guid)GetValue(i); method GetInt16 (line 113) | public short GetInt16(int i) => (short)GetValue(i); method GetInt32 (line 114) | public int GetInt32(int i) => (int)GetValue(i); method GetInt64 (line 115) | public long GetInt64(int i) => (long)GetValue(i); method GetString (line 116) | public string GetString(int i) => GetValue(i)?.ToString(); method GetStream (line 118) | async Task GetStream() method ReadAllJsonAsync (line 156) | private async Task ReadAllJsonAsync() FILE: DataProviders/JsonTableExtractor.cs class JsonTableExtractor (line 9) | public class JsonTableExtractor method Extract (line 13) | public Dictionary Extract(string json) method Flatten (line 51) | private void Flatten(JsonElement element, Dictionary c... method GetPrimitiveValue (line 134) | private object? GetPrimitiveValue(JsonElement element) FILE: DataProviders/LexCharReader.cs class LexCharReader (line 9) | internal class LexCharReader method LexCharReader (line 22) | internal LexCharReader(TextReader textReader) method GetNext (line 32) | internal char GetNext() method Peek (line 54) | internal char Peek() method UnGet (line 65) | internal void UnGet() method EndOfInput (line 83) | internal bool EndOfInput() FILE: DataProviders/LexToken.cs class LexToken (line 9) | internal class LexToken method LexToken (line 17) | internal LexToken(string value, LexTokenTypes type) method ToString (line 26) | public override string ToString() FILE: DataProviders/LexTokenList.cs class LexTokenList (line 11) | internal class LexTokenList : IEnumerable method LexTokenList (line 15) | internal LexTokenList() method Add (line 20) | internal void Add(LexToken token) method Push (line 25) | internal void Push(LexToken token) method Peek (line 30) | internal LexToken Peek() method Extract (line 35) | internal LexToken Extract() method GetEnumerator (line 50) | public IEnumerator GetEnumerator() FILE: DataProviders/LexTokenTypes.cs type LexTokenTypes (line 9) | internal enum LexTokenTypes FILE: DataProviders/Lexer.cs class Lexer (line 12) | internal class Lexer method Lexer (line 25) | internal Lexer(TextReader source) method Lex (line 38) | internal LexTokenList Lex() method GetNextToken (line 55) | private LexToken GetNextToken() method ReadQuoted (line 86) | private LexToken ReadQuoted(char ch) method ReadToChar (line 105) | private LexToken ReadToChar(char firstc, char ch) method ReadDateTime (line 123) | private LexToken ReadDateTime(char ch) FILE: DataProviders/LogCommand.cs class LogCommand (line 12) | public class LogCommand : IDbCommand method LogCommand (line 22) | public LogCommand(LogConnection conn) method Cancel (line 79) | public void Cancel() method Prepare (line 84) | public void Prepare() method ExecuteReader (line 101) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 109) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 114) | public object ExecuteScalar() method ExecuteNonQuery (line 119) | public int ExecuteNonQuery() method CreateParameter (line 136) | public IDbDataParameter CreateParameter() method Dispose (line 235) | public void Dispose() FILE: DataProviders/LogConnection.cs class LogConnection (line 11) | public class LogConnection : IDbConnection method LogConnection (line 15) | public LogConnection(string conn) method ChangeDatabase (line 27) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 32) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 37) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 71) | public IDbCommand CreateCommand() method Open (line 76) | public void Open() method Close (line 81) | public void Close() method Dispose (line 106) | public void Dispose() FILE: DataProviders/LogDataParameter.cs class LogDataParameter (line 11) | public class LogDataParameter : BaseDataParameter method LogDataParameter (line 13) | public LogDataParameter():base() FILE: DataProviders/LogDataReader.cs class LogDataReader (line 14) | public class LogDataReader : IDataReader method LogDataReader (line 44) | public LogDataReader(System.Data.CommandBehavior behavior, LogConnecti... method NextResult (line 83) | public bool NextResult() method Close (line 88) | public void Close() method Read (line 99) | public bool Read() method CompressString (line 200) | string CompressString(string v) method GetDateTime (line 211) | object GetDateTime(string v) method GetSchemaTable (line 272) | public DataTable GetSchemaTable() method Dispose (line 281) | public void Dispose() method GetInt32 (line 290) | public int GetInt32(int i) method GetValue (line 312) | public object GetValue(int i) method IsDBNull (line 317) | public bool IsDBNull(int i) method GetBytes (line 322) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetByte (line 327) | public byte GetByte(int i) method GetFieldType (line 332) | public Type GetFieldType(int i) method GetDecimal (line 337) | public decimal GetDecimal(int i) method GetValues (line 342) | public int GetValues(object[] values) method GetName (line 353) | public string GetName(int i) method GetInt64 (line 366) | public long GetInt64(int i) method GetDouble (line 371) | public double GetDouble(int i) method GetBoolean (line 376) | public bool GetBoolean(int i) method GetGuid (line 381) | public Guid GetGuid(int i) method GetDateTime (line 386) | public DateTime GetDateTime(int i) method GetOrdinal (line 391) | public int GetOrdinal(string name) method GetDataTypeName (line 415) | public string GetDataTypeName(int i) method GetFloat (line 421) | public float GetFloat(int i) method GetData (line 426) | public IDataReader GetData(int i) method GetChars (line 431) | public long GetChars(int i, long fieldoffset, char[] buffer, int buffe... method GetString (line 436) | public string GetString(int i) method GetChar (line 441) | public char GetChar(int i) method GetInt16 (line 446) | public short GetInt16(int i) FILE: DataProviders/MultipleStreamReader.cs class MultipleStreamReader (line 15) | public class MultipleStreamReader : TextReader method MultipleStreamReader (line 26) | public MultipleStreamReader(string pathlist) method GetFileList (line 34) | void GetFileList(string pathlist) method AddFileToQueue (line 76) | void AddFileToQueue(string f, bool asis) method GetStream (line 96) | async Task GetStream() method Close (line 127) | public override void Close() method ReadLine (line 138) | public override string ReadLine() FILE: DataProviders/TxtCommand.cs class TxtCommand (line 12) | public class TxtCommand : IDbCommand method TxtCommand (line 23) | public TxtCommand(TxtConnection conn) method Cancel (line 108) | public void Cancel() method Prepare (line 113) | public void Prepare() method ExecuteReader (line 130) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 138) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 143) | public object ExecuteScalar() method ExecuteNonQuery (line 148) | public int ExecuteNonQuery() method CreateParameter (line 165) | public IDbDataParameter CreateParameter() method Dispose (line 280) | public void Dispose() FILE: DataProviders/TxtConnection.cs class TxtConnection (line 11) | public class TxtConnection : IDbConnection method TxtConnection (line 15) | public TxtConnection(string conn) method ChangeDatabase (line 27) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 32) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 37) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 71) | public IDbCommand CreateCommand() method Open (line 76) | public void Open() method Close (line 81) | public void Close() method Dispose (line 106) | public void Dispose() FILE: DataProviders/TxtDataParameter.cs class TxtDataParameter (line 11) | public class TxtDataParameter : BaseDataParameter method TxtDataParameter (line 13) | public TxtDataParameter():base() FILE: DataProviders/TxtDataReader.cs class TxtDataReader (line 16) | public class TxtDataReader : IDataReader method TxtDataReader (line 29) | public TxtDataReader(System.Data.CommandBehavior behavior, TxtConnecti... method FillData (line 114) | void FillData(LexTokenList ll) method GetLine (line 144) | LexTokenList GetLine() method GetTypeOfString (line 162) | Type GetTypeOfString(string v) method GetStream (line 167) | async Task GetStream() method NextResult (line 214) | public bool NextResult() method Close (line 219) | public void Close() method Read (line 231) | public bool Read() method GetDateTime (line 254) | object GetDateTime(string v) method GetSchemaTable (line 338) | public DataTable GetSchemaTable() method Dispose (line 348) | public void Dispose() method GetInt32 (line 357) | public int GetInt32(int i) method GetValue (line 379) | public object GetValue(int i) method IsDBNull (line 384) | public bool IsDBNull(int i) method GetBytes (line 389) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetByte (line 394) | public byte GetByte(int i) method GetFieldType (line 399) | public Type GetFieldType(int i) method GetDecimal (line 404) | public decimal GetDecimal(int i) method GetValues (line 409) | public int GetValues(object[] values) method GetName (line 420) | public string GetName(int i) method GetInt64 (line 433) | public long GetInt64(int i) method GetDouble (line 438) | public double GetDouble(int i) method GetBoolean (line 443) | public bool GetBoolean(int i) method GetGuid (line 448) | public Guid GetGuid(int i) method GetDateTime (line 453) | public DateTime GetDateTime(int i) method GetOrdinal (line 458) | public int GetOrdinal(string name) method GetDataTypeName (line 481) | public string GetDataTypeName(int i) method GetFloat (line 487) | public float GetFloat(int i) method GetData (line 492) | public IDataReader GetData(int i) method GetChars (line 497) | public long GetChars(int i, long fieldoffset, char[] buffer, int buffe... method GetString (line 502) | public string GetString(int i) method GetChar (line 507) | public char GetChar(int i) method GetInt16 (line 512) | public short GetInt16(int i) FILE: DataProviders/WebServiceCommand.cs class WebServiceCommand (line 12) | public class WebServiceCommand : IDbCommand method WebServiceCommand (line 25) | public WebServiceCommand(WebServiceConnection conn) method Cancel (line 104) | public void Cancel() method Prepare (line 109) | public void Prepare() method ExecuteReader (line 126) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 134) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 139) | public object ExecuteScalar() method ExecuteNonQuery (line 144) | public int ExecuteNonQuery() method CreateParameter (line 161) | public IDbDataParameter CreateParameter() method Dispose (line 267) | public void Dispose() FILE: DataProviders/WebServiceConnection.cs class WebServiceConnection (line 11) | public class WebServiceConnection : IDbConnection method WebServiceConnection (line 15) | public WebServiceConnection(string conn) method ChangeDatabase (line 27) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 32) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 37) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 71) | public IDbCommand CreateCommand() method Open (line 76) | public void Open() method Close (line 81) | public void Close() method Dispose (line 106) | public void Dispose() FILE: DataProviders/WebServiceDataParameter.cs class WebServiceDataParameter (line 11) | public class WebServiceDataParameter : BaseDataParameter method WebServiceDataParameter (line 13) | public WebServiceDataParameter():base() FILE: DataProviders/WebServiceDataReader.cs class WebServiceDataReader (line 18) | public class WebServiceDataReader : IDataReader method WebServiceDataReader (line 45) | public WebServiceDataReader(System.Data.CommandBehavior behavior, WebS... method BuildData (line 64) | void BuildData(WebServiceWsdl wsw) method GetDataProperties (line 83) | void GetDataProperties(string name, Type t, object data, ref int ci, r... method BuildMetaData (line 151) | void BuildMetaData(WebServiceWsdl wsw) method GetProperties (line 161) | void GetProperties(string name, Type t) method IsBaseType (line 198) | bool IsBaseType(Type t) method NextResult (line 227) | public bool NextResult() method Close (line 232) | public void Close() method Read (line 241) | public bool Read() method GetSchemaTable (line 259) | public DataTable GetSchemaTable() method Dispose (line 269) | public void Dispose() method GetInt32 (line 278) | public int GetInt32(int i) method GetValue (line 300) | public object GetValue(int i) method IsDBNull (line 305) | public bool IsDBNull(int i) method GetBytes (line 310) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetByte (line 315) | public byte GetByte(int i) method GetFieldType (line 320) | public Type GetFieldType(int i) method GetDecimal (line 325) | public decimal GetDecimal(int i) method GetValues (line 330) | public int GetValues(object[] values) method GetName (line 341) | public string GetName(int i) method GetInt64 (line 354) | public long GetInt64(int i) method GetDouble (line 359) | public double GetDouble(int i) method GetBoolean (line 364) | public bool GetBoolean(int i) method GetGuid (line 369) | public Guid GetGuid(int i) method GetDateTime (line 374) | public DateTime GetDateTime(int i) method GetOrdinal (line 379) | public int GetOrdinal(string name) method GetDataTypeName (line 403) | public string GetDataTypeName(int i) method GetFloat (line 409) | public float GetFloat(int i) method GetData (line 414) | public IDataReader GetData(int i) method GetChars (line 419) | public long GetChars(int i, long fieldoffset, char[] buffer, int buffe... method GetString (line 424) | public string GetString(int i) method GetChar (line 429) | public char GetChar(int i) method GetInt16 (line 434) | public short GetInt16(int i) FILE: DataProviders/WebServiceWsdl.cs class WebServiceWsdl (line 28) | public class WebServiceWsdl method GetWebServiceWsdl (line 36) | static internal WebServiceWsdl GetWebServiceWsdl(string url) method ClearCache (line 45) | static public void ClearCache() method GetMethodInfo (line 50) | public MethodInfo GetMethodInfo(string service, string operation) method Invoke (line 66) | public object Invoke(string service, string operation, DataParameterCo... method WebServiceWsdl (line 106) | private WebServiceWsdl(string url) method GetAssembly (line 113) | private Assembly GetAssembly() method GetServiceDescription (line 169) | public async Task GetServiceDescription() method GetStream (line 188) | async Task GetStream() FILE: DataProviders/XmlCommand.cs class XmlCommand (line 12) | public class XmlCommand : IDbCommand method XmlCommand (line 23) | public XmlCommand(XmlConnection conn) method Cancel (line 77) | public void Cancel() method Prepare (line 82) | public void Prepare() method ExecuteReader (line 99) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 107) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 112) | public object ExecuteScalar() method ExecuteNonQuery (line 117) | public int ExecuteNonQuery() method CreateParameter (line 134) | public IDbDataParameter CreateParameter() method Dispose (line 246) | public void Dispose() FILE: DataProviders/XmlConnection.cs class XmlConnection (line 11) | public class XmlConnection : IDbConnection method XmlConnection (line 15) | public XmlConnection(string conn) method ChangeDatabase (line 27) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 32) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 37) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 71) | public IDbCommand CreateCommand() method Open (line 76) | public void Open() method Close (line 81) | public void Close() method Dispose (line 106) | public void Dispose() FILE: DataProviders/XmlDataParameter.cs class XmlDataParameter (line 11) | public class XmlDataParameter : BaseDataParameter method XmlDataParameter (line 13) | public XmlDataParameter():base() FILE: DataProviders/XmlDataReader.cs class XmlDataReader (line 15) | public class XmlDataReader : IDataReader method XmlDataReader (line 32) | public XmlDataReader(System.Data.CommandBehavior behavior, XmlConnecti... method ColumnsAttributes (line 87) | void ColumnsAttributes() method ColumnsElements (line 102) | void ColumnsElements() method ColumnsSpecifiedInit (line 123) | void ColumnsSpecifiedInit() method AddName (line 147) | void AddName(string name) method NextResult (line 176) | public bool NextResult() method Close (line 181) | public void Close() method Read (line 192) | public bool Read() method GetSchemaTable (line 226) | public DataTable GetSchemaTable() method Dispose (line 236) | public void Dispose() method GetInt32 (line 245) | public int GetInt32(int i) method GetValue (line 267) | public object GetValue(int i) method IsDBNull (line 272) | public bool IsDBNull(int i) method GetBytes (line 277) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetByte (line 282) | public byte GetByte(int i) method GetFieldType (line 287) | public Type GetFieldType(int i) method GetDecimal (line 292) | public decimal GetDecimal(int i) method GetValues (line 297) | public int GetValues(object[] values) method GetName (line 308) | public string GetName(int i) method GetInt64 (line 321) | public long GetInt64(int i) method GetDouble (line 326) | public double GetDouble(int i) method GetBoolean (line 331) | public bool GetBoolean(int i) method GetGuid (line 336) | public Guid GetGuid(int i) method GetDateTime (line 341) | public DateTime GetDateTime(int i) method GetOrdinal (line 346) | public int GetOrdinal(string name) method GetDataTypeName (line 370) | public string GetDataTypeName(int i) method GetFloat (line 376) | public float GetFloat(int i) method GetData (line 381) | public IDataReader GetData(int i) method GetChars (line 386) | public long GetChars(int i, long fieldoffset, char[] buffer, int buffe... method GetString (line 391) | public string GetString(int i) method GetChar (line 396) | public char GetChar(int i) method GetInt16 (line 401) | public short GetInt16(int i) FILE: DataProviders/iTunesCommand.cs class iTunesCommand (line 12) | public class iTunesCommand : IDbCommand method iTunesCommand (line 20) | public iTunesCommand(iTunesConnection conn) method Cancel (line 45) | public void Cancel() method Prepare (line 50) | public void Prepare() method ExecuteReader (line 67) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 75) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 80) | public object ExecuteScalar() method ExecuteNonQuery (line 85) | public int ExecuteNonQuery() method CreateParameter (line 102) | public IDbDataParameter CreateParameter() method Dispose (line 190) | public void Dispose() FILE: DataProviders/iTunesConnection.cs class iTunesConnection (line 12) | public class iTunesConnection : IDbConnection method iTunesConnection (line 17) | public iTunesConnection(string conn) method ChangeDatabase (line 29) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 34) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 39) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 88) | public IDbCommand CreateCommand() method Open (line 93) | public void Open() method Close (line 98) | public void Close() method Dispose (line 123) | public void Dispose() FILE: DataProviders/iTunesDataParameter.cs class iTunesDataParameter (line 11) | public class iTunesDataParameter : BaseDataParameter method iTunesDataParameter (line 13) | public iTunesDataParameter():base() FILE: DataProviders/iTunesDataReader.cs class iTunesDataReader (line 15) | public class iTunesDataReader : IDataReader method iTunesDataReader (line 115) | public iTunesDataReader(System.Data.CommandBehavior behavior, iTunesCo... method GetTracksColumns (line 153) | XPathNodeIterator GetTracksColumns() method PositionToTracks (line 195) | XPathNodeIterator PositionToTracks() method NextResult (line 248) | public bool NextResult() method Close (line 253) | public void Close() method Read (line 263) | public bool Read() method GetSchemaTable (line 352) | public DataTable GetSchemaTable() method Dispose (line 362) | public void Dispose() method GetInt32 (line 371) | public int GetInt32(int i) method GetValue (line 393) | public object GetValue(int i) method IsDBNull (line 398) | public bool IsDBNull(int i) method GetBytes (line 403) | public long GetBytes(int i, long fieldOffset, byte[] buffer, int buffe... method GetByte (line 408) | public byte GetByte(int i) method GetFieldType (line 413) | public Type GetFieldType(int i) method GetDecimal (line 418) | public decimal GetDecimal(int i) method GetValues (line 423) | public int GetValues(object[] values) method GetName (line 434) | public string GetName(int i) method GetInt64 (line 447) | public long GetInt64(int i) method GetDouble (line 452) | public double GetDouble(int i) method GetBoolean (line 457) | public bool GetBoolean(int i) method GetGuid (line 462) | public Guid GetGuid(int i) method GetDateTime (line 467) | public DateTime GetDateTime(int i) method GetOrdinal (line 472) | public int GetOrdinal(string name) method GetDataTypeName (line 495) | public string GetDataTypeName(int i) method GetFloat (line 501) | public float GetFloat(int i) method GetData (line 506) | public IDataReader GetData(int i) method GetChars (line 511) | public long GetChars(int i, long fieldoffset, char[] buffer, int buffe... method GetString (line 516) | public string GetString(int i) method GetChar (line 521) | public char GetChar(int i) method GetInt16 (line 526) | public short GetInt16(int i) FILE: EncryptionProvider/Prompt.cs class Prompt (line 11) | public static class Prompt method ShowDialog (line 13) | public static string ShowDialog(string text, string caption) FILE: EncryptionProvider/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: EncryptionProvider/String/StringEncryption.cs class StringEncryption (line 10) | public class StringEncryption method StringEncryption (line 17) | public StringEncryption(string pass) method Encrypt (line 50) | public string Encrypt(string unencrypted) method Decrypt (line 58) | public string Decrypt(string encrypted) method Encrypt (line 71) | private byte[] Encrypt(byte[] buffer, byte[] vector) method Decrypt (line 77) | private byte[] Decrypt(byte[] buffer, byte[] vector) method Transform (line 83) | private byte[] Transform(byte[] buffer, ICryptoTransform transform) FILE: Examples/Sample-Report-Viewer/Sample-Report-Viewer/Form1.cs class Form1 (line 15) | public class Form1 : Form method Form1 (line 20) | public Form1() method InitializeViewer (line 25) | private void InitializeViewer() method InitializeComponent (line 38) | private void InitializeComponent() FILE: Examples/Sample-Report-Viewer/Sample-Report-Viewer/Program.cs class Program (line 9) | static class Program method Main (line 14) | [STAThread] FILE: Examples/Sample-Report-Viewer/Sample-Report-Viewer/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: Examples/Sample-Report-Viewer/Sample-Report-Viewer/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: Examples/SampleApp2-SetData/SampleApp2-SetData/Form1.Designer.cs class Form1 (line 3) | partial class Form1 method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: Examples/SampleApp2-SetData/SampleApp2-SetData/Form1.cs class Form1 (line 14) | public partial class Form1 : Form method Form1 (line 19) | public Form1() method Form1_Load (line 37) | private async void Form1_Load(object sender, EventArgs e) method ExampleViaSourceRdlNoLoad (line 58) | private async Task ExampleViaSourceRdlNoLoad(string filepath, DataTabl... method ExampleViaSetSourceFile (line 67) | private async Task ExampleViaSetSourceFile(string filepath, DataTable dt) method GetTable (line 76) | private async Task GetTable(SqliteCommand cmd) FILE: Examples/SampleApp2-SetData/SampleApp2-SetData/Program.cs class Program (line 9) | static class Program method Main (line 14) | [STAThread] FILE: Examples/SampleApp2-SetData/SampleApp2-SetData/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: Examples/SampleApp2-SetData/SampleApp2-SetData/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: Examples/SampleAppHyperLinkCustomAction/HyperLinkExample/Form1.Designer.cs class Form1 (line 3) | partial class Form1 method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: Examples/SampleAppHyperLinkCustomAction/HyperLinkExample/Form1.cs class Form1 (line 14) | public partial class Form1 : Form method Form1 (line 19) | public Form1() method ButtonReloadReport_Click (line 24) | private async void ButtonReloadReport_Click(object sender, EventArgs e) method LoadReport (line 29) | private async Task LoadReport() method rdlViewer1_Hyperlink (line 35) | private void rdlViewer1_Hyperlink(object source, Majorsilence.Reportin... FILE: Examples/SampleAppHyperLinkCustomAction/HyperLinkExample/Program.cs class Program (line 9) | static class Program method Main (line 14) | [STAThread] FILE: Examples/SampleAppHyperLinkCustomAction/HyperLinkExample/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: Examples/SampleAppHyperLinkCustomAction/HyperLinkExample/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: Examples/SampleDesignerControl/SampleDesignerControl/Program.cs class Program (line 9) | static class Program method Main (line 14) | [STAThread] FILE: Examples/SampleDesignerControl/SampleDesignerControl/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: Examples/SampleDesignerControl/SampleDesignerControl/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: Examples/SampleDesignerControl/SampleDesignerControlWPF/App.xaml.cs class App (line 14) | public partial class App : Application FILE: Examples/SampleDesignerControl/SampleDesignerControlWPF/MainWindow.xaml.cs class MainWindow (line 21) | public partial class MainWindow : Window method MainWindow (line 23) | public MainWindow() method Window_Loaded_1 (line 28) | private void Window_Loaded_1(object sender, RoutedEventArgs e) FILE: Examples/SampleDesignerControl/SampleDesignerControlWPF/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: Examples/SampleDesignerControl/SampleDesignerControlWPF/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: LanguageWrappers/php/report.php class Report (line 4) | class Report { method __construct (line 13) | public function __construct($report_path, $rdl_cmd_path, $dotnet_path ... method set_parameter (line 26) | public function set_parameter($name, $value){ method set_connection_string (line 31) | public function set_connection_string($connection_string){ method export (line 40) | public function export($type, $export_path){ method export_to_memory (line 111) | public function export_to_memory($type){ method endsWith (line 136) | private function endsWith($haystack, $needle) FILE: LanguageWrappers/php/viewer.php class Viewer (line 6) | class Viewer { method __construct (line 13) | public function __construct($rpt){ method show (line 21) | public function show(){ FILE: LanguageWrappers/python/report.py class Report (line 8) | class Report : method __init__ (line 53) | def __init__(self, report_path: str, rdl_cmd_path: str, path_to_dotnet... method set_parameter (line 58) | def set_parameter(self, name, value): method set_connection_string (line 67) | def set_connection_string(self, connection_string: str): method export (line 76) | def export(self, type : str, export_path : str): method export_to_memory (line 133) | def export_to_memory(self, type : str) -> bytes | str : FILE: LanguageWrappers/ruby/report.rb class Report (line 3) | class Report method initialize (line 5) | def initialize(report_path, rdl_cmd_path, path_to_dotnet = nil) method set_parameter (line 12) | def set_parameter(name, value) method set_connection_string (line 21) | def set_connection_string(connection_string) method export (line 28) | def export(type, export_path) method export_to_memory (line 96) | def export_to_memory(type) FILE: LibRdlWpfViewer/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: LibRdlWpfViewer/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: LibRdlWpfViewer/RdlWpfViewer.xaml.cs class RdlWpfViewer (line 21) | public partial class RdlWpfViewer : UserControl method RdlWpfViewer (line 23) | public RdlWpfViewer() method Rebuild (line 28) | public async Task Rebuild() method SaveAs (line 33) | public async Task SaveAs(string FileName, Majorsilence.Reporting.Rdl.O... method SetSourceFile (line 46) | public async Task SetSourceFile(Uri value) method SetSourceRdl (line 59) | public async Task SetSourceRdl(string value) method Report (line 76) | public async Task Report() FILE: Majorsilence.Drawing.Common/Bitmap.cs class Bitmap (line 8) | public class Bitmap : Image, IDisposable method Bitmap (line 12) | public Bitmap(int width, int height) : base(width, height) method Bitmap (line 17) | public Bitmap(string filename) : base(filename) method Bitmap (line 21) | public Bitmap(MemoryStream ms) : base(ms) method Bitmap (line 26) | public Bitmap(SKBitmap skBitmap) : base(skBitmap) method Save (line 32) | public void Save(string filename, ImageFormat format, EncoderParameter... method Save (line 38) | public new void Save(Stream stream, ImageFormat format) method GetGraphics (line 44) | public Graphics GetGraphics() method Dispose (line 50) | public new void Dispose() method FromFile (line 57) | public static new Bitmap FromFile(string filename) FILE: Majorsilence.Drawing.Common/Brush.cs class Brush (line 7) | public class Brush : IDisposable method Brush (line 11) | public Brush(Color color) method Dispose (line 20) | public void Dispose() method ToSkPaint (line 26) | internal SKPaint ToSkPaint() FILE: Majorsilence.Drawing.Common/Brushes.cs class Brushes (line 9) | public static class Brushes FILE: Majorsilence.Drawing.Common/CharacterRange.cs class CharacterRange (line 9) | public class CharacterRange method CharacterRange (line 13) | public CharacterRange(int first, int length) FILE: Majorsilence.Drawing.Common/Color.cs class Color (line 9) | public class Color method GetColorName (line 117) | private static string GetColorName(SKColor color) method Color (line 145) | public Color(int r, int g, int b, int a = 255) method Color (line 154) | public Color(byte r, byte g, byte b, byte a = 255) method FromRgb (line 163) | public static Color FromRgb(int a, int r, int g, int b) method FromArgb (line 168) | public static Color FromArgb(int a, int r, int g, int b) method FromName (line 173) | public static Color FromName(string name) method ToSkColor (line 261) | public SKColor ToSkColor() FILE: Majorsilence.Drawing.Common/ColorTranslator.cs class ColorTranslator (line 9) | public class ColorTranslator method ColorTranslator (line 11) | public ColorTranslator() { } method FromHtml (line 13) | public static Color FromHtml(string html) FILE: Majorsilence.Drawing.Common/Drawing2D/CompositingQuality.cs type CompositingQuality (line 3) | public enum CompositingQuality FILE: Majorsilence.Drawing.Common/Drawing2D/DashStyle.cs type DashStyle (line 9) | public enum DashStyle FILE: Majorsilence.Drawing.Common/Drawing2D/GraphicsPath.cs class GraphicsPath (line 6) | public class GraphicsPath method GraphicsPath (line 10) | public GraphicsPath() method AddLine (line 15) | public void AddLine(float x1, float y1, float x2, float y2) method AddRectangle (line 21) | public void AddRectangle(float x, float y, float width, float height) method ToSKPath (line 26) | public SKPath ToSKPath() => _path; FILE: Majorsilence.Drawing.Common/Drawing2D/GraphicsState.cs class GraphicsState (line 6) | public class GraphicsState method GraphicsState (line 10) | internal GraphicsState(SKCanvas canvas) FILE: Majorsilence.Drawing.Common/Drawing2D/HatchBrush.cs class HatchBrush (line 10) | public sealed class HatchBrush : Brush method HatchBrush (line 16) | public HatchBrush(HatchStyle hatchStyle, Color foreColor, Color backCo... method ToSkPaint (line 24) | internal new SKPaint ToSkPaint() method CreateTwoColorHatchShader (line 32) | private SKShader CreateTwoColorHatchShader(HatchStyle hatchStyle, SKCo... FILE: Majorsilence.Drawing.Common/Drawing2D/HatchStyle.cs type HatchStyle (line 9) | public enum HatchStyle FILE: Majorsilence.Drawing.Common/Drawing2D/InterpolationMode.cs type InterpolationMode (line 3) | public enum InterpolationMode FILE: Majorsilence.Drawing.Common/Drawing2D/LineCap.cs type LineCap (line 3) | public enum LineCap FILE: Majorsilence.Drawing.Common/Drawing2D/LineJoin.cs type LineJoin (line 3) | public enum LineJoin FILE: Majorsilence.Drawing.Common/Drawing2D/LinearGradientBrush.cs class LinearGradientBrush (line 10) | public sealed class LinearGradientBrush : Brush method LinearGradientBrush (line 12) | public LinearGradientBrush(Color color) : base(color) method LinearGradientBrush (line 16) | public LinearGradientBrush(Color color1, Color color2, float angle) : ... method LinearGradientBrush (line 21) | public LinearGradientBrush(Rectangle rect, Color color1, Color color2,... FILE: Majorsilence.Drawing.Common/Drawing2D/LinearGradientMode.cs type LinearGradientMode (line 3) | public enum LinearGradientMode FILE: Majorsilence.Drawing.Common/Drawing2D/Matrix.cs class Matrix (line 6) | public class Matrix method Matrix (line 10) | public Matrix() method Translate (line 15) | public void Translate(float dx, float dy) method Scale (line 20) | public void Scale(float scaleX, float scaleY) method Rotate (line 25) | public void Rotate(float angle) method ToSKMatrix (line 30) | public SKMatrix ToSKMatrix() => _matrix; FILE: Majorsilence.Drawing.Common/Drawing2D/PixelOffsetMode.cs type PixelOffsetMode (line 3) | public enum PixelOffsetMode FILE: Majorsilence.Drawing.Common/Drawing2D/SmoothingMode.cs type SmoothingMode (line 3) | public enum SmoothingMode FILE: Majorsilence.Drawing.Common/Font.cs class Font (line 7) | public class Font : IDisposable method Font (line 18) | public Font(string fontFamily, float size) method Font (line 24) | public Font(string fontFamily, float size, FontStyle style) method Font (line 57) | public Font(Drawing.FontFamily fontFamily, float size, FontStyle style) method GetHeight (line 62) | public double GetHeight(Graphics g) method ToSkFont (line 78) | public SKFont ToSkFont() method Dispose (line 84) | public void Dispose() method ToString (line 91) | public override string ToString() FILE: Majorsilence.Drawing.Common/FontFamily.cs class FontFamily (line 3) | public class FontFamily method FontFamily (line 9) | public FontFamily(string name) method GetCellDescent (line 14) | public float GetCellDescent(FontStyle fs) method GetEmHeight (line 32) | public float GetEmHeight(FontStyle fs) method ToString (line 50) | public override string ToString() FILE: Majorsilence.Drawing.Common/FontStyle.cs type FontStyle (line 10) | [Flags] FILE: Majorsilence.Drawing.Common/Graphics.cs class Graphics (line 9) | public class Graphics : IDisposable method Graphics (line 23) | public Graphics(SKCanvas canvas) method DrawRectangle (line 31) | public void DrawRectangle(Pen pen, Rectangle rectangle) method FillRectangle (line 36) | public void FillRectangle(Brush brush, Rectangle rectangle) method FillRectangle (line 41) | public void FillRectangle(Brush brush, int x, int y, int width, int he... method FillRectangle (line 46) | public void FillRectangle(Brush brush, float x, float y, float width, ... method DrawImage (line 51) | public void DrawImage(Image image, Rectangle rect) method DrawImage (line 61) | public void DrawImage(Bitmap bitmap, Rectangle rect) method FillEllipse (line 66) | public void FillEllipse(Brush brush, int x, int y, int width, int height) method FillEllipse (line 70) | public void FillEllipse(Brush brush, Point point) method FillEllipse (line 75) | public void FillEllipse(Brush brush, Rectangle r) method FillPolygon (line 80) | public void FillPolygon(Brush b, PointF[] points) method DrawEllipse (line 95) | public void DrawEllipse(Pen pen, Point p) method DrawEllipse (line 100) | public void DrawEllipse(Pen pen, Rectangle r) method DrawPolygon (line 105) | public void DrawPolygon(Pen pen, PointF[] points) method DrawRectangle (line 119) | public void DrawRectangle(Pen pen, int x, int y, int width, int height) method DrawCurve (line 124) | public void DrawCurve(Pen pen, Point[] points, float tension) method FillPie (line 151) | public void FillPie(Brush brush, Rectangle r, float startAngle, float ... method DrawPie (line 162) | public void DrawPie(Pen p, Rectangle r, float startAngle, float endAngle) method DrawLines (line 173) | public void DrawLines(Pen p, Point[] points) method DrawLine (line 184) | public void DrawLine(Pen pen, Point pt1, Point pt2) method DrawString (line 190) | public void DrawString(string s, Font font, Brush brush, PointF point) method DrawString (line 196) | public void DrawString(string s, Font font, Brush brush, Rectangle lay... method DrawString (line 255) | public void DrawString(string s, Font font, Brush brush, RectangleF la... method Dispose (line 263) | public void Dispose() method Save (line 268) | public Drawing2D.GraphicsState Save() method MeasureString (line 275) | public SizeF MeasureString(string text, Font font) method MeasureString (line 280) | public SizeF MeasureString(string text, Font font, SizeF layoutArea, S... method MeasureString (line 285) | public SizeF MeasureString(string text, Font font, int maxWidth, Strin... method MeasureCharacterRanges (line 357) | public Region[] MeasureCharacterRanges(string text, Font font, Rectang... method ResetTransform (line 382) | public void ResetTransform() method AddMetafileComment (line 387) | public void AddMetafileComment(byte[] data) method Restore (line 393) | public void Restore(Drawing2D.GraphicsState state) method FromImage (line 398) | public static Graphics FromImage(Bitmap bm) FILE: Majorsilence.Drawing.Common/GraphicsUnit.cs type GraphicsUnit (line 3) | public enum GraphicsUnit FILE: Majorsilence.Drawing.Common/Image.cs class Image (line 9) | public class Image : IDisposable method Image (line 21) | public Image(SKBitmap bitmap) method Image (line 26) | public Image(int width, int height) method Image (line 32) | public Image(string filename) method Image (line 40) | public Image(MemoryStream ms) method FromFile (line 46) | public static Image FromFile(string path) method Save (line 56) | public void Save(string path, ImageFormat format) method Save (line 66) | public void Save(Stream stream, ImageFormat format) method Save (line 74) | public void Save(Stream stream, ImageFormat format, int quality) method Save (line 82) | public void Save(Stream stream, ImageCodecInfo codec, EncoderParameter... method GetSkFormat (line 90) | private SKEncodedImageFormat GetSkFormat(ImageFormat format) method FromStream (line 115) | public static Image FromStream(Stream stream) method Dispose (line 136) | public void Dispose() FILE: Majorsilence.Drawing.Common/Imaging/Encoder.cs class Encoder (line 4) | public class Encoder method Encoder (line 11) | private Encoder(string parameterName) FILE: Majorsilence.Drawing.Common/Imaging/EncoderParameter.cs class EncoderParameter (line 4) | public class EncoderParameter method EncoderParameter (line 9) | public EncoderParameter(Encoder encoder, object value) FILE: Majorsilence.Drawing.Common/Imaging/EncoderParameters.cs class EncoderParameters (line 4) | public class EncoderParameters method EncoderParameters (line 9) | public EncoderParameters(int count) method Add (line 15) | public void Add(EncoderParameter parameter) method GetParameters (line 21) | public List GetParameters() => _parameters; FILE: Majorsilence.Drawing.Common/Imaging/ImageCodecInfo.cs class ImageCodecInfo (line 4) | public class ImageCodecInfo method GetImageEncoders (line 30) | public static ImageCodecInfo[] GetImageEncoders() FILE: Majorsilence.Drawing.Common/Imaging/ImageFormat.cs type ImageFormat (line 4) | public enum ImageFormat FILE: Majorsilence.Drawing.Common/Imaging/ImageFormatExtensions.cs class ImageFormatExtensions (line 7) | public static class ImageFormatExtensions method ToSkImageEncodeFormat (line 9) | public static SKEncodedImageFormat ToSkImageEncodeFormat(this ImageFor... FILE: Majorsilence.Drawing.Common/Pen.cs class Pen (line 11) | public class Pen : IDisposable method Pen (line 15) | public Pen(Color color) method Pen (line 25) | public Pen(Brush brush) method Pen (line 35) | public Pen(Color color, float width) method Pen (line 45) | public Pen(Brush brush, float width) method Dispose (line 59) | public void Dispose() method ToSkPaint (line 65) | public SKPaint ToSkPaint() FILE: Majorsilence.Drawing.Common/Pens.cs class Pens (line 3) | public static class Pens FILE: Majorsilence.Drawing.Common/Point.cs type Point (line 5) | public struct Point : IEquatable method Point (line 11) | public Point(int x, int y) method ToString (line 17) | public override string ToString() method Equals (line 36) | public override bool Equals(object? obj) method Equals (line 56) | public bool Equals(Point other) method GetHashCode (line 62) | public override int GetHashCode() FILE: Majorsilence.Drawing.Common/PointF.cs class PointF (line 4) | public class PointF method PointF (line 8) | public PointF() { } method PointF (line 9) | public PointF(float x, float y) method ToString (line 14) | public override string ToString() FILE: Majorsilence.Drawing.Common/Rectangle.cs type Rectangle (line 4) | public struct Rectangle method Rectangle (line 15) | public Rectangle(int x, int y, int width, int height) method Rectangle (line 23) | public Rectangle(Point p, Size s) method IntersectsWith (line 31) | public bool IntersectsWith(Rectangle other) method Equals (line 39) | public override bool Equals(object? obj) method GetHashCode (line 49) | public override int GetHashCode() FILE: Majorsilence.Drawing.Common/RectangleF.cs type RectangleF (line 4) | public struct RectangleF method RectangleF (line 11) | public RectangleF(float x, float y, float width, float height) method Contains (line 26) | public bool Contains(float x, float y) method IntersectsWith (line 31) | public bool IntersectsWith(RectangleF rect) method Intersect (line 36) | public static RectangleF Intersect(RectangleF a, RectangleF b) method Union (line 48) | public static RectangleF Union(RectangleF a, RectangleF b) method ToString (line 61) | public override string ToString() FILE: Majorsilence.Drawing.Common/Region.cs class Region (line 9) | public class Region : IDisposable method Region (line 16) | public Region(int x, int y, int width, int height) method Area (line 24) | public int Area() method Contains (line 29) | public bool Contains(int x, int y) method GetBounds (line 34) | public RectangleF GetBounds(Graphics g) method ToString (line 44) | public override string ToString() method Dispose (line 49) | public void Dispose() FILE: Majorsilence.Drawing.Common/Size.cs type Size (line 4) | public struct Size method Size (line 8) | public Size(int width, int height) method ToString (line 16) | public override string ToString() FILE: Majorsilence.Drawing.Common/SizeF.cs type SizeF (line 4) | public struct SizeF method SizeF (line 8) | public SizeF(float width, float height) method ToString (line 16) | public override string ToString() FILE: Majorsilence.Drawing.Common/SkiaImageExtensions.cs class SkiaImageExtensions (line 8) | public static class SkiaImageExtensions method ToSkImageEncodeOptions (line 11) | public static SKEncodedImageFormat ToSkImageEncodeOptions(this Encoder... FILE: Majorsilence.Drawing.Common/SolidBrush.cs class SolidBrush (line 9) | public sealed class SolidBrush : Brush method SolidBrush (line 11) | public SolidBrush(Color color) : base(color) FILE: Majorsilence.Drawing.Common/StringAlignment.cs type StringAlignment (line 3) | public enum StringAlignment FILE: Majorsilence.Drawing.Common/StringFormat.cs class StringFormat (line 4) | public class StringFormat : IDisposable method StringFormat (line 19) | public StringFormat() method SetMeasurableCharacterRanges (line 27) | public void SetMeasurableCharacterRanges(CharacterRange[] ranges) method Clone (line 36) | public object Clone() method Dispose (line 41) | public void Dispose() FILE: Majorsilence.Drawing.Common/StringFormatFlags.cs type StringFormatFlags (line 3) | [Flags] FILE: Majorsilence.Drawing.Common/StringTrimming.cs type StringTrimming (line 3) | public enum StringTrimming FILE: Majorsilence.Drawing.Common/Text.cs class Text (line 6) | public class Text type TextRenderingHint (line 14) | public enum TextRenderingHint method Text (line 22) | public Text(string content, Color color, float size, string fontFamily... method ToSkFont (line 32) | public SKFont ToSkFont() FILE: Majorsilence.Reporting.Benchmarks/DrawingCompatJob.cs class DrawingCompatJob (line 12) | [AttributeUsage(AttributeTargets.Class | AttributeTargets.Assembly, Allo... method DrawingCompatJob (line 17) | public DrawingCompatJob( method CreateJob (line 31) | private static Job CreateJob(string? id, int launchCount, int warmupCo... FILE: Majorsilence.Reporting.Benchmarks/JsonDataProviderBenchmark.cs class JsonDataProviderBenchmark (line 14) | [AsciiDocExporter] method NestedJson (line 25) | [Benchmark] FILE: Majorsilence.Reporting.UI.RdlAvalonia/Viewer/AvaloniaReportViewer.axaml.cs class AvaloniaReportViewer (line 14) | public partial class AvaloniaReportViewer : UserControl method AvaloniaReportViewer (line 26) | public AvaloniaReportViewer() method SetSourceFileAsync (line 41) | public async Task SetSourceFileAsync(Uri fileUri) method SetSourceRdlAsync (line 49) | public async Task SetSourceRdlAsync(string rdl) method SetReportParametersAmpersandSeparated (line 56) | public void SetReportParametersAmpersandSeparated(string parameterString) method RebuildAsync (line 77) | public async Task RebuildAsync() method InitializeUi (line 98) | private void InitializeUi() method OnScrollViewerPointerWheelChanged (line 124) | private void OnScrollViewerPointerWheelChanged(object? sender, Pointer... method OpenButtonOnClick (line 135) | private async void OpenButtonOnClick(object? sender, RoutedEventArgs e) method SaveButtonOnClick (line 160) | private async void SaveButtonOnClick(object? sender, RoutedEventArgs e) method PrintButtonOnClick (line 224) | private async void PrintButtonOnClick(object? sender, RoutedEventArgs e) method SaveAsAsync (line 254) | private async Task SaveAsAsync(string filePath, OutputPresentationType... method GetReportAsync (line 298) | private async Task GetReportAsync() method BuildPagesAsync (line 330) | private async Task BuildPagesAsync(Report report) method UpdatePageUi (line 350) | private void UpdatePageUi() method UpdateErrorsUi (line 364) | private void UpdateErrorsUi() method SetPage (line 379) | private void SetPage(int page) method SetZoom (line 396) | private void SetZoom(double zoom) method ApplyZoomMode (line 404) | private void ApplyZoomMode() method ZoomModeComboBoxOnSelectionChanged (line 441) | private void ZoomModeComboBoxOnSelectionChanged(object? sender, Select... method PageTextBoxOnLostFocus (line 450) | private void PageTextBoxOnLostFocus(object? sender, RoutedEventArgs e) method ApplyParametersButtonOnClick (line 458) | private async void ApplyParametersButtonOnClick(object? sender, Routed... method ErrorsToggleOnChanged (line 464) | private void ErrorsToggleOnChanged(object? sender, RoutedEventArgs e) FILE: Majorsilence.Reporting.UI.RdlAvalonia/Viewer/ReportCanvas.cs class HitListEntry (line 20) | public class HitListEntry method HitListEntry (line 25) | public HitListEntry(Rect rect, PageItem pageItem) method Contains (line 31) | public bool Contains(Point p) => Rect.Contains(p); class ReportCanvas (line 34) | public sealed class ReportCanvas : Control method ReportCanvas (line 52) | public ReportCanvas() method AppendHtmlText (line 127) | private static void AppendHtmlText(PageTextHtml pth, StringBuilder sb) method CopySelection (line 150) | public async void CopySelection() method SelectAll (line 166) | public void SelectAll() method ClearSelection (line 183) | public void ClearSelection() method SetReport (line 190) | public void SetReport(Report? report, Pages? pages) method SetPage (line 201) | public void SetPage(int pageIndex) method SetZoom (line 211) | public void SetZoom(double zoom) method MeasureOverride (line 237) | protected override Size MeasureOverride(Size availableSize) method OnPointerPressed (line 245) | protected override void OnPointerPressed(PointerPressedEventArgs e) method OnPointerMoved (line 270) | protected override void OnPointerMoved(PointerEventArgs e) method OnPointerReleased (line 281) | protected override void OnPointerReleased(PointerReleasedEventArgs e) method OnKeyDown (line 301) | protected override void OnKeyDown(KeyEventArgs e) method UpdateSelectionFromRect (line 326) | private void UpdateSelectionFromRect(Rect selectionRect, bool ctrlPres... method CreateRect (line 349) | private static Rect CreateRect(Point p1, Point p2) method Render (line 358) | public override void Render(DrawingContext context) method DrawSelectionHighlights (line 389) | private void DrawSelectionHighlights(DrawingContext context) method RenderPage (line 404) | private void RenderPage() method BuildHitList (line 455) | private void BuildHitList(int pageIndex, double dpi) method BuildHitListFromPage (line 470) | private void BuildHitListFromPage(Page page, double scale) method PointsToLogical (line 516) | private double PointsToLogical(float points, double scale) FILE: Majorsilence.Reporting.UI.RdlAvalonia/Viewer/SkiaPageDrawing.cs class SkiaPageDrawing (line 10) | public class SkiaPageDrawing method SkiaPageDrawing (line 15) | public SkiaPageDrawing(Pages pages, float zoom = 1.0f) method ToDrawingColor (line 25) | private static Drawing.Color ToDrawingColor(dynamic color) method Draw (line 40) | public void Draw(Majorsilence.Drawing.Graphics g, int pageIndex) method ProcessPage (line 51) | private void ProcessPage(Drawing.Graphics g, Page page) method ProcessHtml (line 127) | private void ProcessHtml(PageTextHtml? pth, Drawing.Graphics g) method DrawLine (line 158) | private void DrawLine(PageLine? pl, Drawing.Graphics g) method DrawString (line 175) | private void DrawString(PageText? pt, Drawing.Graphics g, Drawing.Rect... method DrawImage (line 194) | private void DrawImage(PageImage? pi, Drawing.Graphics g, Drawing.Rect... method DrawBackground (line 218) | private void DrawBackground(Drawing.Graphics g, Drawing.Rectangle rect... method DrawEllipse (line 241) | private void DrawEllipse(PageEllipse? pe, Drawing.Graphics g, Drawing.... method DrawPie (line 263) | private void DrawPie(PagePie? pp, Drawing.Graphics g, Drawing.Rectangl... method DrawPolygon (line 285) | private void DrawPolygon(PagePolygon? ppo, Drawing.Graphics g, Drawing... method DrawCurve (line 316) | private void DrawCurve(PageCurve? pc, Drawing.Graphics g, Drawing.Rect... method ConvertXtoPixels (line 340) | private float ConvertXtoPixels(float x) method ConvertYtoPixels (line 345) | private float ConvertYtoPixels(float y) method CreatePen (line 350) | private Drawing.Pen? CreatePen(Drawing.Color color, BorderStyleEnum? s... method GetBrush (line 380) | private Drawing.Brush? GetBrush(Drawing.Color color) method GetFont (line 390) | private Drawing.Font? GetFont(PageText? pt) method GetStringFormat (line 414) | private Drawing.StringFormat GetStringFormat(PageText pt) FILE: Majorsilence.Reporting.UI.RdlAvalonia/Viewer/ZoomMode.cs type ZoomMode (line 3) | public enum ZoomMode FILE: Majorsilence.Reporting.UI/App.axaml.cs class App (line 7) | public partial class App : Application method Initialize (line 9) | public override void Initialize() method OnFrameworkInitializationCompleted (line 14) | public override void OnFrameworkInitializationCompleted() FILE: Majorsilence.Reporting.UI/MainWindow.axaml.cs class MainWindow (line 5) | public partial class MainWindow : Window method MainWindow (line 7) | public MainWindow() FILE: Majorsilence.Reporting.UI/Program.cs class Program (line 6) | class Program method Main (line 11) | [STAThread] method BuildAvaloniaApp (line 16) | public static AppBuilder BuildAvaloniaApp() FILE: Majorsilence.Reporting.WebExample/Controllers/HomeController.cs class HomeController (line 7) | public class HomeController : Controller method HomeController (line 11) | public HomeController(ILogger logger) method Index (line 16) | public IActionResult Index() method Privacy (line 21) | public IActionResult Privacy() method Error (line 26) | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, No... FILE: Majorsilence.Reporting.WebExample/Models/ErrorViewModel.cs class ErrorViewModel (line 3) | public class ErrorViewModel FILE: Majorsilence.WinformUtils/FormExtensions.cs class FormExtensions (line 5) | public static class FormExtensions method ShowWaiter (line 9) | public static void ShowWaiter(this UserControl parent) method ShowWaiter (line 17) | public static void ShowWaiter(this ContainerControl parent) method Parent_SizeChanged (line 48) | private static void Parent_SizeChanged(object? sender, EventArgs e) method Parent_Closed (line 61) | private static void Parent_Closed(object? sender, EventArgs e) method Parent_Move (line 70) | private static void Parent_Move(object? sender, EventArgs e) method HideWaiter (line 82) | public static void HideWaiter(this UserControl parent) method HideWaiter (line 91) | public static void HideWaiter(this ContainerControl parent) FILE: Majorsilence.WinformUtils/Strings.Designer.cs class Strings (line 21) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Strings (line 30) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: Majorsilence.WinformUtils/WaitForm.cs class WaitForm (line 3) | internal class WaitForm : Form method WaitForm (line 11) | public WaitForm() method PlaceControls (line 40) | private void PlaceControls() method WaitForm_Move (line 48) | private void WaitForm_Move(object? sender, EventArgs e) method WaitForm_SizeChanged (line 53) | private void WaitForm_SizeChanged(object? sender, EventArgs e) method timer1_Tick (line 58) | private async Task timer1_Tick(object sender, EventArgs e) method Dispose (line 75) | protected override void Dispose(bool disposing) method InitializeComponent (line 85) | private void InitializeComponent() FILE: OracleSp/DataParameter.cs class DataParameter (line 32) | public class DataParameter : IDbDataParameter method DataParameter (line 37) | public DataParameter() FILE: OracleSp/DataParameterCollection.cs class DataParameterCollection (line 32) | public class DataParameterCollection : IDataParameterCollection method DataParameterCollection (line 36) | public DataParameterCollection() method RemoveAt (line 61) | public void RemoveAt(string parameterName) method Contains (line 66) | public bool Contains(string parameterName) method IndexOf (line 71) | public int IndexOf(string parameterName) method RemoveAt (line 107) | void System.Collections.IList.RemoveAt(int index) method Insert (line 112) | public void Insert(int index, object value) method Remove (line 117) | public void Remove(object value) method Contains (line 122) | bool System.Collections.IList.Contains(object value) method Clear (line 127) | public void Clear() method IndexOf (line 132) | int System.Collections.IList.IndexOf(object value) method Add (line 137) | public int Add(object value) method CopyTo (line 170) | public void CopyTo(Array array, int index) method GetEnumerator (line 187) | public System.Collections.IEnumerator GetEnumerator() FILE: OracleSp/OracleSpCommand.cs class OracleSpCommand (line 35) | public class OracleSpCommand : IDbCommand method OracleSpCommand (line 41) | public OracleSpCommand(OracleSpConnection conn) method Cancel (line 49) | public void Cancel() method Prepare (line 54) | public void Prepare() method ExecuteReader (line 71) | public IDataReader ExecuteReader(System.Data.CommandBehavior behavior) method ExecuteReader (line 97) | IDataReader System.Data.IDbCommand.ExecuteReader() method ExecuteScalar (line 102) | public object ExecuteScalar() method ExecuteNonQuery (line 107) | public int ExecuteNonQuery() method CreateParameter (line 118) | public IDbDataParameter CreateParameter() method Dispose (line 178) | public void Dispose() FILE: OracleSp/OracleSpConnection.cs class OracleSpConnection (line 33) | public class OracleSpConnection : IDbConnection method OracleSpConnection (line 37) | public OracleSpConnection(string conn) method ChangeDatabase (line 49) | public void ChangeDatabase(string databaseName) method BeginTransaction (line 54) | public IDbTransaction BeginTransaction(System.Data.IsolationLevel il) method BeginTransaction (line 59) | IDbTransaction System.Data.IDbConnection.BeginTransaction() method CreateCommand (line 84) | public IDbCommand CreateCommand() method Open (line 89) | public void Open() method Close (line 94) | public void Close() method Dispose (line 116) | public void Dispose() FILE: RdlAsp.Mvc/RdlListReports.cs class RdlListReports (line 16) | public class RdlListReports : Controller method RdlListReports (line 26) | public RdlListReports(Settings settings) method Index (line 31) | [HttpGet] FILE: RdlAsp.Mvc/RdlReport.cs class RdlReport (line 19) | public class RdlReport : Controller method RdlReport (line 45) | public RdlReport(IWebHostEnvironment webHostEnvironment, IMemoryCache ... method Render (line 53) | [HttpGet] method SetReportFile (line 148) | private async Task SetReportFile(string value) method GetPassword (line 190) | private string GetPassword() method DoRender (line 267) | private async Task DoRender(string file) method AddError (line 319) | private void AddError(int severity, string err, params object[] args) method AddError (line 330) | private void AddError(int severity, IList errors) method DoStatistics (line 346) | private void DoStatistics(ref StringBuilder htmlContent) method GetCacheEntries (line 365) | private List GetCacheEntries(IMemoryCache cache) method Generate (line 382) | private async Task Generate(Report report) method GetRenderType (line 445) | private OutputPresentationType GetRenderType(string type) method FindReportFile (line 474) | private string FindReportFile(string file) method GetReport (line 503) | private async Task GetReport(string prog, string file) FILE: RdlAsp.Mvc/RdlSession.cs class RdlSession (line 13) | public class RdlSession method RdlSession (line 17) | public RdlSession() FILE: RdlAsp.Mvc/ReportHelper.cs class ReportHelper (line 15) | internal class ReportHelper method ReportHelper (line 21) | private ReportHelper() method Get (line 27) | static internal ReportHelper Get(IMemoryCache app) method IncrHits (line 37) | static internal void IncrHits(IMemoryCache app) method IncrMisses (line 45) | static internal void IncrMisses(IMemoryCache app) method GetCachedReport (line 54) | static internal Report GetCachedReport(string file, IMemoryCache c) method SaveCachedReport (line 75) | static internal void SaveCachedReport(Report r, string file, IMemoryCa... method GetParameters (line 84) | static internal ListDictionary GetParameters(string parms) method GetSource (line 106) | static internal string GetSource(string file) method SetUserContext (line 123) | static internal void SetUserContext(Report r, HttpContext context, Nee... method GetParameterHtml (line 149) | static internal string GetParameterHtml(Report rpt, IDictionary pd, Ht... method AppendExports (line 280) | static private void AppendExports(StringBuilder pHtml, HttpContext con... FILE: RdlAsp.Mvc/Settings.cs class Settings (line 3) | public class Settings FILE: RdlCmd/RdlCmd.cs class RdlCmd (line 25) | public class RdlCmd method Main (line 37) | [STAThread] method GetPassword (line 137) | private string GetPassword() method DoRender (line 143) | private async Task DoRender(string dir, string[] files, string[] types... method GetParameters (line 236) | private ListDictionary GetParameters(string parms) method GetSource (line 258) | private string GetSource(string file) method GetReport (line 281) | private async Task GetReport(string prog, string file, string ... method SaveAs (line 339) | private async Task SaveAs(Report report, string FileName, string type) method SaveAsPdf (line 437) | private async Task SaveAsPdf(Report report, OneFileStreamGen sg) method Size (line 548) | private float Size(string t) method WriteHelp (line 625) | static private void WriteHelp() method WriteLicense (line 653) | static private void WriteLicense() FILE: RdlCreator.Tests/Document_Test.cs class Document_Test (line 15) | [TestFixture] method SinglePagePdfDiskExport (line 18) | [Test] method MultiPagePdfTest (line 34) | [Test] method LoadTest (line 50) | [Test] method ImageTestPdfDiskExport (line 63) | [Test] method PdfInfoAddedTest (line 79) | [Test] method GenerateData (line 106) | private RdlCreator.Document GenerateData(int pageCount = 1) method GenerateImageDocument (line 198) | private RdlCreator.Document GenerateImageDocument() FILE: RdlCreator.Tests/Reports_ChainedTest.cs class Reports_ChainedTest (line 21) | [TestFixture] method PdfStreamExport (line 27) | [Test] method PdfDiskExport (line 61) | [Test] method HtmlDiskExport (line 87) | [Test] method GenerateTestData (line 108) | private RdlCreator.Report GenerateTestData() FILE: RdlCreator.Tests/Reports_DataProviderTest.cs class Reports_DataProviderTest (line 13) | [TestFixture] method Setup (line 19) | [SetUp] method TestMethodCsv (line 40) | [Test] method TestMethodExcelLegacy (line 69) | [Test] method TestMethodExcel2007 (line 91) | [Test] method TestMethodExcel2007DataOnly (line 109) | [Test] method TestMethodPdf (line 127) | [Test] method TestReportFromDataTable (line 149) | [Test] class Category (line 188) | class Category method TestReportFromEnumerable (line 195) | [Test] method NormalizeEOL (line 233) | private string NormalizeEOL(string input) FILE: RdlCreator.Tests/Reports_JsonDataProviderTest.cs class Reports_JsonDataProviderTest (line 13) | [TestFixture] method Setup (line 41) | [SetUp] method TestConnectionStrings (line 59) | [Test] method NestedJson (line 89) | [Test] method NormalizeEOL (line 120) | private string NormalizeEOL(string input) FILE: RdlCreator.Tests/Reports_ManualDefinitionTest.cs class Reports_ManualDefinitionTest (line 20) | [TestFixture] method CsvExport (line 26) | [Test] method HtmlExport (line 52) | [Test] method PdfStreamExport (line 68) | [Test] method PdfDiskExport (line 87) | [Test] method NormalizeEOL (line 110) | private string NormalizeEOL(string input) method GenerateTestData (line 115) | private RdlCreator.Report GenerateTestData() FILE: RdlCreator/Body.cs class Body (line 9) | public class Body FILE: RdlCreator/BorderColor.cs class BorderColor (line 5) | public class BorderColor FILE: RdlCreator/BorderStyle.cs class BorderStyle (line 5) | public class BorderStyle FILE: RdlCreator/BorderStyleType.cs class BorderStyleType (line 3) | public class BorderStyleType method BorderStyleType (line 7) | public BorderStyleType() method BorderStyleType (line 11) | public BorderStyleType(string value) method ToString (line 24) | public override string ToString() FILE: RdlCreator/BorderWidth.cs class BorderWidth (line 5) | public class BorderWidth FILE: RdlCreator/Card.cs class Card (line 7) | public class Card method Card (line 11) | public Card() { } method Card (line 13) | public Card(Report rpt) method Add (line 38) | public void Add(Text text) method Add (line 52) | public void Add(CustomReportItems cri) FILE: RdlCreator/ConnectionProperties.cs class ConnectionProperties (line 6) | public class ConnectionProperties FILE: RdlCreator/Create.cs class Create (line 15) | public class Create method GenerateRdl (line 17) | public async Task GenerateRdl(Report report) method ValidateReport (line 44) | private static void ValidateReport(Rdl.Report fyiReport) method GenerateRdl (line 58) | public async Task GenerateRdl(DataTable data, method GenerateRdl (line 124) | public async Task GenerateRdl(IEnumerable data, method GetDataProviderString (line 195) | private string GetDataProviderString(DataProviders dataProvider) method GenerateRdl (line 220) | public async Task GenerateRdl(DataProviders dataProvider, method GenerateRdl (line 254) | public async Task GenerateRdl(string dataProvider, method InternalReportCreation (line 338) | private static string InternalReportCreation(string dataProvider, stri... class Utf8StringWriter (line 486) | public class Utf8StringWriter : StringWriter FILE: RdlCreator/CustomProperties.cs class CustomProperties (line 6) | public class CustomProperties FILE: RdlCreator/CustomProperty.cs class CustomProperty (line 5) | public class CustomProperty FILE: RdlCreator/CustomReportItems.cs class CustomReportItems (line 5) | public class CustomReportItems FILE: RdlCreator/DataProviders.cs type DataProviders (line 3) | public enum DataProviders FILE: RdlCreator/DataSet.cs class DataSet (line 6) | public class DataSet FILE: RdlCreator/DataSets.cs class DataSets (line 6) | public class DataSets FILE: RdlCreator/DataSource.cs class DataSource (line 6) | public class DataSource FILE: RdlCreator/DataSources.cs class DataSources (line 6) | public class DataSources FILE: RdlCreator/Details.cs class Details (line 6) | public class Details FILE: RdlCreator/Document.cs class Document (line 16) | [XmlRoot(ElementName = "Report", Namespace = "http://schemas.microsoft.c... method WithDescription (line 57) | public Document WithDescription(string description) method WithAuthor (line 62) | public Document WithAuthor(string author) method WithName (line 68) | public Document WithName(string name) method WithPageHeight (line 74) | public Document WithPageHeight(string pageHeight) method WithPageWidth (line 80) | public Document WithPageWidth(string pageWidth) method WithTopMargin (line 92) | public Document WithTopMargin(string topMargin) method WithLeftMargin (line 98) | public Document WithLeftMargin(string leftMargin) method WithRightMargin (line 104) | public Document WithRightMargin(string rightMargin) method WithBottomMargin (line 110) | public Document WithBottomMargin(string bottomMargin) method WithPage (line 116) | public Document WithPage(Page page) method WithPage (line 122) | public Document WithPage(Action options) method Create (line 130) | public async TaskCreate() method Create (line 137) | public async Task Create(Stream output) FILE: RdlCreator/Field.cs class Field (line 6) | public class Field FILE: RdlCreator/Fields.cs class Fields (line 7) | public class Fields FILE: RdlCreator/Header.cs class Header (line 6) | public class Header FILE: RdlCreator/Page.cs class Page (line 10) | public class Page method WithHeight (line 21) | public Page WithHeight(ReportItemSize height) method WithWidth (line 31) | public Page WithWidth(ReportItemSize width) method WithPageHeader (line 41) | public Page WithPageHeader(PageHeader pageHeader) method WithPageFooter (line 46) | public Page WithPageFooter(PageFooter pageFooter) method WithText (line 52) | public Page WithText(Text textbox) method WithCard (line 61) | public Page WithCard(Card card) method WithTableColumns (line 70) | public Page WithTableColumns(TableColumns tableColumns) method WithTableHeader (line 77) | public Page WithTableHeader(TableRow header, string repeatOnNewPage = ... method WithTableDetails (line 91) | public Page WithTableDetails(TableRow row) method WithTableNoRows (line 102) | public Page WithTableNoRows(string noRows) method WithTableName (line 110) | public Page WithTableName(string tableName) method WithImage (line 117) | public Page WithImage(ReportItemImage image) method InitReportItemBody (line 128) | private void InitReportItemBody(bool includeTable) FILE: RdlCreator/PageFooter.cs class PageFooter (line 6) | public class PageFooter FILE: RdlCreator/PageHeader.cs class PageHeader (line 6) | public class PageHeader FILE: RdlCreator/Query.cs class Query (line 6) | public class Query FILE: RdlCreator/Report.cs class Report (line 9) | [XmlRoot(ElementName = "Report", Namespace = "http://schemas.microsoft.c... method WithDescription (line 59) | public Report WithDescription(string description) method WithAuthor (line 65) | public Report WithAuthor(string author) method WithName (line 71) | public Report WithName(string name) method WithPageHeight (line 77) | public Report WithPageHeight(ReportItemSize pageHeight) method WithPageWidth (line 83) | public Report WithPageWidth(ReportItemSize pageWidth) method WithDataSources (line 89) | public Report WithDataSources(DataSources dataSources) method WithWidth (line 95) | public Report WithWidth(ReportItemSize width) method WithTopMargin (line 101) | public Report WithTopMargin(ReportItemSize topMargin) method WithLeftMargin (line 107) | public Report WithLeftMargin(ReportItemSize leftMargin) method WithRightMargin (line 113) | public Report WithRightMargin(ReportItemSize rightMargin) method WithBottomMargin (line 119) | public Report WithBottomMargin(ReportItemSize bottomMargin) method WithDataSets (line 125) | public Report WithDataSets(DataSets dataSets) method WithPageHeader (line 131) | public Report WithPageHeader(PageHeader pageHeader) method WithBody (line 137) | public Report WithBody(ReportItemSize height) method WithBody (line 146) | public Report WithBody(Body body) method WithPageBreak (line 152) | public Report WithPageBreak() method WithPageBreak (line 157) | public Report WithPageBreak(ReportItemSize yPos) method WithPageFooter (line 171) | public Report WithPageFooter(PageFooter pageFooter) method WithTable (line 177) | public Report WithTable() method WithReportText (line 183) | public Report WithReportText(Text textbox) method InitReportItemBody (line 191) | private void InitReportItemBody(bool includeTable) method WithCard (line 209) | public Report WithCard(Card card) method WithTableColumns (line 218) | public Report WithTableColumns(TableColumns tableColumns) method WithTableHeader (line 224) | public Report WithTableHeader(TableRow header, string repeatOnNewPage ... method WithTableDetails (line 237) | public Report WithTableDetails(TableRow row) method WithTableDataSetName (line 247) | public Report WithTableDataSetName(string dataSetName) method WithTableNoRows (line 253) | public Report WithTableNoRows(string noRows) method WithTableName (line 259) | public Report WithTableName(string tableName) method WithImage (line 265) | public Report WithImage(ReportItemImage image) FILE: RdlCreator/ReportItemImage.cs class ReportItemImage (line 10) | public class ReportItemImage FILE: RdlCreator/ReportItemSize.cs class ReportItemSize (line 5) | public class ReportItemSize : System.Xml.Serialization.IXmlSerializable method ToString (line 78) | public override string ToString() method FromInches (line 88) | public static ReportItemSize FromInches(float inches) method FromCentimeters (line 93) | public static ReportItemSize FromCentimeters(float centimeters) method FromPoints (line 98) | public static ReportItemSize FromPoints(float points) method FromPicas (line 103) | public static ReportItemSize FromPicas(float picas) method FromMillimeters (line 108) | public static ReportItemSize FromMillimeters(float millimeters) method GetSchema (line 113) | System.Xml.Schema.XmlSchema System.Xml.Serialization.IXmlSerializable.... method ReadXml (line 118) | void System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlR... method WriteXml (line 126) | void System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.Xml... FILE: RdlCreator/ReportItemsBody.cs class ReportItemsBody (line 7) | public class ReportItemsBody FILE: RdlCreator/ReportItemsFooter.cs class ReportItemsFooter (line 6) | public class ReportItemsFooter FILE: RdlCreator/ReportItemsHeader.cs class ReportItemsHeader (line 6) | public class ReportItemsHeader FILE: RdlCreator/SizeUnit.cs type SizeUnit (line 3) | public enum SizeUnit FILE: RdlCreator/Style.cs class Style (line 5) | public class Style FILE: RdlCreator/Table.cs class Table (line 6) | public class Table FILE: RdlCreator/TableCell.cs class TableCell (line 6) | public class TableCell FILE: RdlCreator/TableCellReportItems.cs class TableCellReportItems (line 5) | public class TableCellReportItems FILE: RdlCreator/TableCells.cs class TableCells (line 6) | public class TableCells FILE: RdlCreator/TableColumn.cs class TableColumn (line 6) | public class TableColumn FILE: RdlCreator/TableColumns.cs class TableColumns (line 7) | public class TableColumns FILE: RdlCreator/TableRow.cs class TableRow (line 7) | public class TableRow FILE: RdlCreator/TableRows.cs class TableRows (line 6) | public class TableRows FILE: RdlCreator/Text.cs class Text (line 6) | public class Text FILE: RdlCreator/Value.cs class Value (line 6) | public class Value FILE: RdlCri/AztecCode.cs class AztecCode (line 15) | public class AztecCode : ZxingBarcodes method AztecCode (line 17) | public AztecCode() : base(35.91f, 35.91f) // Optimal width at mag 1 FILE: RdlCri/BarCode128.cs class BarCode128 (line 15) | public class BarCode128 : ZxingBarcodes method BarCode128 (line 17) | public BarCode128() : base(35.91f, 65.91f) // Optimal width at mag 1 FILE: RdlCri/BarCode39.cs class BarCode39 (line 16) | public class BarCode39 : ZxingBarcodes method BarCode39 (line 18) | public BarCode39() : base(35.91f, 65.91f) // Optimal width at mag 1 FILE: RdlCri/BarCodeBookland.cs class BarCodeBookland (line 24) | public class BarCodeBookland: ICustomReportItem method BarCodeBookland (line 29) | public BarCodeBookland() // Need to be able to create an instance method DrawImage (line 39) | public void DrawImage(ref Draw2.Bitmap bm) method DrawDesignerImage (line 49) | public void DrawDesignerImage(ref Draw2.Bitmap bm) method IsDataRegion (line 58) | public bool IsDataRegion() method SetProperties (line 67) | public void SetProperties(IDictionary props) method GetCustomReportItemXml (line 115) | public string GetCustomReportItemXml() method GetPropertiesInstance (line 133) | public object GetPropertiesInstance(XmlNode iNode) method SetPropertiesInstance (line 159) | public void SetPropertiesInstance(XmlNode node, object inst) method CreateChild (line 171) | void CreateChild(XmlNode node, string nm, string val) method Dispose (line 186) | public void Dispose() method GetNamedElementValue (line 202) | string GetNamedElementValue(XmlNode xNode, string name, string def) class BarCodeBooklandProperties (line 220) | public class BarCodeBooklandProperties method BarCodeBooklandProperties (line 226) | internal BarCodeBooklandProperties(BarCodeBookland bcbl, XmlNode node) method SetISBN (line 233) | internal void SetISBN(string isbn) FILE: RdlCri/BarCodeEAN13.cs class BarCodeEAN13 (line 22) | public class BarCodeEAN13 : ICustomReportItem method BarCodeEAN13 (line 94) | public BarCodeEAN13() // Need to be able to create an instance method DrawImage (line 104) | public void DrawImage(ref Draw2.Bitmap bm) method DrawDesignerImage (line 116) | public void DrawDesignerImage(ref Draw2.Bitmap bm) method DrawImage (line 126) | internal void DrawImage(Draw2.Bitmap bm, string upcode) method IsDataRegion (line 185) | public bool IsDataRegion() method SetProperties (line 194) | public void SetProperties(IDictionary props) method GetCustomReportItemXml (line 255) | public string GetCustomReportItemXml() method GetPropertiesInstance (line 281) | public object GetPropertiesInstance(XmlNode iNode) method SetPropertiesInstance (line 313) | public void SetPropertiesInstance(XmlNode node, object inst) method CreateChild (line 331) | void CreateChild(XmlNode node, string nm, string val) method Dispose (line 346) | public void Dispose() method GetEncoding (line 361) | string GetEncoding(string upccode) method CheckSum (line 421) | int CheckSum(string upccode) method GetNamedElementValue (line 445) | string GetNamedElementValue(XmlNode xNode, string name, string def) class BarCodeProperties (line 464) | public class BarCodeProperties method BarCodeProperties (line 472) | internal BarCodeProperties(BarCodeEAN13 bc, XmlNode node) method SetNumberSystem (line 478) | internal void SetNumberSystem(string ns) method SetManufacturerCode (line 496) | internal void SetManufacturerCode(string mc) method SetProductCode (line 514) | internal void SetProductCode(string pc) FILE: RdlCri/BarCodeEAN8.cs class BarCodeEAN8 (line 15) | public class BarCodeEAN8 : ZxingBarcodes method BarCodeEAN8 (line 17) | public BarCodeEAN8() : base(35.91f, 65.91f) // Optimal width at mag 1 FILE: RdlCri/BarCodeITF14.cs class BarCodeITF14 (line 20) | public class BarCodeITF14 : ICustomReportItem method Dispose (line 27) | public void Dispose() method DrawDesignerImage (line 32) | public void DrawDesignerImage(ref Bitmap bm) method DrawImage (line 37) | public void DrawImage(ref Bitmap bm) method InternalDraw (line 42) | private void InternalDraw(ref Bitmap bm, string value) method GetCustomReportItemXml (line 58) | public string GetCustomReportItemXml() method GetPropertiesInstance (line 71) | public object GetPropertiesInstance(XmlNode iNode) method IsDataRegion (line 93) | public bool IsDataRegion() method SetProperties (line 98) | public void SetProperties(IDictionary props) method SetPropertiesInstance (line 114) | public void SetPropertiesInstance(XmlNode node, object inst) class BarCodePropertiesItf14 (line 130) | public class BarCodePropertiesItf14 method BarCodePropertiesItf14 (line 136) | internal BarCodePropertiesItf14(BarCodeITF14 bc, XmlNode node) method SetITF14 (line 142) | internal void SetITF14(string ns) FILE: RdlCri/DataMatrix.cs class DataMatrix (line 3) | public class DataMatrix : ZxingBarcodes method DataMatrix (line 5) | public DataMatrix() : base(35.91f, 65.91f) // Optimal width at mag 1 FILE: RdlCri/Pdf417Barcode.cs class Pdf417Barcode (line 16) | public class Pdf417Barcode : ZxingBarcodes method Pdf417Barcode (line 18) | public Pdf417Barcode() : base(35.91f, 65.91f) // Optimal width at mag 1 FILE: RdlCri/PixelConversions.cs class PixelConversions (line 9) | internal class PixelConversions method MmXFromPixel (line 11) | static public int MmXFromPixel(Graphics g, float x) method MmYFromPixel (line 18) | static public int MmYFromPixel(Graphics g, float y) method PixelXFromMm (line 25) | static public int PixelXFromMm(Graphics g, float x) method PixelYFromMm (line 32) | static public int PixelYFromMm(Graphics g, float y) method GetMagnification (line 48) | static public float GetMagnification(Graphics g, int width, int height... FILE: RdlCri/QrCode.cs class QrCode (line 16) | public class QrCode : ZxingBarcodes method QrCode (line 18) | public QrCode() : base(35.91f, 35.91f) // Optimal width at mag 1 FILE: RdlCri/XmlHelpers.cs class XmlHelpers (line 8) | public class XmlHelpers method GetNamedElementValue (line 19) | public static string GetNamedElementValue(XmlNode xNode, string name, ... method CreateChild (line 33) | public static void CreateChild(XmlNode node, string nm, string val) FILE: RdlCri/ZxingBarcodes.cs class ZxingBarcodes (line 16) | public class ZxingBarcodes : ICustomReportItem method ZxingBarcodes (line 29) | public ZxingBarcodes() : this(35.91f, 65.91f) method ZxingBarcodes (line 33) | public ZxingBarcodes(float optimalHeight, float optimalWidth) method IsDataRegion (line 39) | bool ICustomReportItem.IsDataRegion() method DrawImage (line 44) | void ICustomReportItem.DrawImage(ref Draw2.Bitmap bm) method DrawImage (line 54) | internal void DrawImage(ref Draw2.Bitmap bm, string qrcode) method DrawDesignerImage (line 93) | void ICustomReportItem.DrawDesignerImage(ref Draw2.Bitmap bm) method SetProperties (line 100) | void ICustomReportItem.SetProperties(IDictionary props) method GetPropertiesInstance (line 125) | object ICustomReportItem.GetPropertiesInstance(System.Xml.XmlNode iNode) method SetPropertiesInstance (line 146) | public void SetPropertiesInstance(System.Xml.XmlNode node, object inst) method GetCustomReportItemXml (line 166) | string ICustomReportItem.GetCustomReportItemXml() method Dispose (line 183) | void IDisposable.Dispose() class ZxingBarCodeProperties (line 194) | public class ZxingBarCodeProperties method ZxingBarCodeProperties (line 200) | internal ZxingBarCodeProperties(ZxingBarcodes bc, XmlNode node) method SetCode (line 206) | internal void SetCode(string ns) FILE: RdlDesign/BackgroundCtl.cs class BackgroundCtl (line 17) | internal class BackgroundCtl : System.Windows.Forms.UserControl, IProperty method BackgroundCtl (line 59) | internal BackgroundCtl(DesignXmlDraw dxDraw, string[] names, List ris) method InitValues (line 85) | private void InitValues() method InitGridLines (line 118) | private void InitGridLines(XmlNode node, string type, CheckBox show, C... method Dispose (line 149) | protected override void Dispose( bool disposing ) method InitializeComponent (line 166) | private void InitializeComponent() method IsValid (line 549) | public bool IsValid() method Apply (line 554) | public void Apply() method ApplyChanges (line 571) | public void ApplyChanges(XmlNode node) method ApplyGridLines (line 639) | private void ApplyGridLines(XmlNode node, string type, CheckBox show, ... method cbMajorTickMarks_SelectedIndexChanged (line 668) | private void cbMajorTickMarks_SelectedIndexChanged(object sender, Syst... method cbMinorTickMarks_SelectedIndexChanged (line 673) | private void cbMinorTickMarks_SelectedIndexChanged(object sender, Syst... method cbMajorGLStyle_SelectedIndexChanged (line 678) | private void cbMajorGLStyle_SelectedIndexChanged(object sender, System... method cbMajorGLColor_SelectedIndexChanged (line 683) | private void cbMajorGLColor_SelectedIndexChanged(object sender, System... method tbMajorGLWidth_TextChanged (line 688) | private void tbMajorGLWidth_TextChanged(object sender, System.EventArg... method cbMinorGLStyle_SelectedIndexChanged (line 693) | private void cbMinorGLStyle_SelectedIndexChanged(object sender, System... method cbMinorGLColor_SelectedIndexChanged (line 698) | private void cbMinorGLColor_SelectedIndexChanged(object sender, System... method tbMinorGLWidth_TextChanged (line 703) | private void tbMinorGLWidth_TextChanged(object sender, System.EventArg... method tbMajorInterval_TextChanged (line 708) | private void tbMajorInterval_TextChanged(object sender, System.EventAr... method tbMinorInterval_TextChanged (line 713) | private void tbMinorInterval_TextChanged(object sender, System.EventAr... method tbMin_TextChanged (line 718) | private void tbMin_TextChanged(object sender, System.EventArgs e) method tbMax_TextChanged (line 723) | private void tbMax_TextChanged(object sender, System.EventArgs e) method chkMonth_CheckedChanged (line 728) | private void chkMonth_CheckedChanged(object sender, System.EventArgs e) method chkVisible_CheckedChanged (line 733) | private void chkVisible_CheckedChanged(object sender, System.EventArgs e) method chkLogScale_CheckedChanged (line 738) | private void chkLogScale_CheckedChanged(object sender, System.EventArg... method chkCanOmit_CheckedChanged (line 743) | private void chkCanOmit_CheckedChanged(object sender, System.EventArgs e) method chkMargin_CheckedChanged (line 748) | private void chkMargin_CheckedChanged(object sender, System.EventArgs e) method chkScalar_CheckedChanged (line 753) | private void chkScalar_CheckedChanged(object sender, System.EventArgs e) method chkReverse_CheckedChanged (line 758) | private void chkReverse_CheckedChanged(object sender, System.EventArgs e) method chkInterlaced_CheckedChanged (line 763) | private void chkInterlaced_CheckedChanged(object sender, System.EventA... method chkMajorGLShow_CheckedChanged (line 768) | private void chkMajorGLShow_CheckedChanged(object sender, System.Event... method chkMinorGLShow_CheckedChanged (line 773) | private void chkMinorGLShow_CheckedChanged(object sender, System.Event... method bMajorGLColor_Click (line 778) | private void bMajorGLColor_Click(object sender, System.EventArgs e) method bMinorGLColor_Click (line 783) | private void bMinorGLColor_Click(object sender, System.EventArgs e) method SetColor (line 788) | private void SetColor(ComboBox cbColor) method bExpr_Click (line 812) | private void bExpr_Click(object sender, System.EventArgs e) FILE: RdlDesign/ChartCtl - Copy.cs class ChartCtl (line 37) | internal class ChartCtl : System.Windows.Forms.UserControl, IProperty method ChartCtl (line 84) | internal ChartCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 95) | private void InitValues() method Dispose (line 219) | protected override void Dispose( bool disposing ) method InitializeComponent (line 236) | private void InitializeComponent() method IsValid (line 662) | public bool IsValid() method Apply (line 667) | public void Apply() method ApplyChanges (line 683) | public void ApplyChanges(XmlNode node) method cbChartType_SelectedIndexChanged (line 772) | private void cbChartType_SelectedIndexChanged(object sender, System.Ev... method cbVector_SelectedIndexChanged (line 835) | private void cbVector_SelectedIndexChanged(object sender, EventArgs e) method cbSubType_SelectedIndexChanged (line 840) | private void cbSubType_SelectedIndexChanged(object sender, System.Even... method cbPalette_SelectedIndexChanged (line 845) | private void cbPalette_SelectedIndexChanged(object sender, System.Even... method cbRenderElement_SelectedIndexChanged (line 850) | private void cbRenderElement_SelectedIndexChanged(object sender, Syste... method tbPercentWidth_ValueChanged (line 855) | private void tbPercentWidth_ValueChanged(object sender, System.EventAr... method tbNoRows_TextChanged (line 860) | private void tbNoRows_TextChanged(object sender, System.EventArgs e) method cbDataSet_SelectedIndexChanged (line 865) | private void cbDataSet_SelectedIndexChanged(object sender, System.Even... method chkPageBreakStart_CheckedChanged (line 870) | private void chkPageBreakStart_CheckedChanged(object sender, System.Ev... method chkPageBreakEnd_CheckedChanged (line 875) | private void chkPageBreakEnd_CheckedChanged(object sender, System.Even... method cbChartData_Changed (line 880) | private void cbChartData_Changed(object sender, System.EventArgs e) method bDataExpr_Click (line 884) | private void bDataExpr_Click(object sender, System.EventArgs e) method chkDataLabel_CheckedChanged (line 937) | private void chkDataLabel_CheckedChanged(object sender, EventArgs e) method bDataLabelExpr_Click (line 942) | private void bDataLabelExpr_Click(object sender, EventArgs e) FILE: RdlDesign/ChartCtl.cs class ChartCtl (line 16) | internal class ChartCtl : System.Windows.Forms.UserControl, IProperty method ChartCtl (line 71) | internal ChartCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 82) | private void InitValues() method Dispose (line 214) | protected override void Dispose( bool disposing ) method InitializeComponent (line 231) | private void InitializeComponent() method IsValid (line 597) | public bool IsValid() method Apply (line 602) | public void Apply() method ApplyChanges (line 618) | public void ApplyChanges(XmlNode node) method cbChartType_SelectedIndexChanged (line 724) | private void cbChartType_SelectedIndexChanged(object sender, System.Ev... method cbVector_SelectedIndexChanged (line 787) | private void cbVector_SelectedIndexChanged(object sender, EventArgs e) method cbSubType_SelectedIndexChanged (line 792) | private void cbSubType_SelectedIndexChanged(object sender, System.Even... method cbPalette_SelectedIndexChanged (line 797) | private void cbPalette_SelectedIndexChanged(object sender, System.Even... method cbRenderElement_SelectedIndexChanged (line 802) | private void cbRenderElement_SelectedIndexChanged(object sender, Syste... method tbPercentWidth_ValueChanged (line 807) | private void tbPercentWidth_ValueChanged(object sender, System.EventAr... method tbNoRows_TextChanged (line 812) | private void tbNoRows_TextChanged(object sender, System.EventArgs e) method cbDataSet_SelectedIndexChanged (line 817) | private void cbDataSet_SelectedIndexChanged(object sender, System.Even... method chkPageBreakStart_CheckedChanged (line 822) | private void chkPageBreakStart_CheckedChanged(object sender, System.Ev... method chkPageBreakEnd_CheckedChanged (line 827) | private void chkPageBreakEnd_CheckedChanged(object sender, System.Even... method cbChartData_Changed (line 832) | private void cbChartData_Changed(object sender, System.EventArgs e) method bDataExpr_Click (line 836) | private void bDataExpr_Click(object sender, System.EventArgs e) method chkDataLabel_CheckedChanged (line 889) | private void chkDataLabel_CheckedChanged(object sender, EventArgs e) method bDataLabelExpr_Click (line 894) | private void bDataLabelExpr_Click(object sender, EventArgs e) method chkToolTip_CheckedChanged (line 912) | private void chkToolTip_CheckedChanged(object sender, EventArgs e) method checkBox1_CheckedChanged (line 917) | private void checkBox1_CheckedChanged(object sender, EventArgs e) method txtYToolFormat_TextChanged (line 922) | private void txtYToolFormat_TextChanged(object sender, EventArgs e) method txtXToolFormat_TextChanged (line 927) | private void txtXToolFormat_TextChanged(object sender, EventArgs e) FILE: RdlDesign/ChartLegendCtl.cs class ChartLegendCtl (line 16) | internal class ChartLegendCtl : System.Windows.Forms.UserControl, IProperty method ChartLegendCtl (line 32) | internal ChartLegendCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 43) | private void InitValues() method Dispose (line 58) | protected override void Dispose( bool disposing ) method InitializeComponent (line 75) | private void InitializeComponent() method IsValid (line 155) | public bool IsValid() method Apply (line 160) | public void Apply() method ApplyChanges (line 174) | public void ApplyChanges(XmlNode node) method cbPosition_SelectedIndexChanged (line 194) | private void cbPosition_SelectedIndexChanged(object sender, System.Eve... method cbLayout_SelectedIndexChanged (line 199) | private void cbLayout_SelectedIndexChanged(object sender, System.Event... method chkVisible_CheckedChanged (line 204) | private void chkVisible_CheckedChanged(object sender, System.EventArgs e) method chkInsidePlotArea_CheckedChanged (line 209) | private void chkInsidePlotArea_CheckedChanged(object sender, System.Ev... FILE: RdlDesign/CodeCtl.cs class CodeCtl (line 23) | internal class CodeCtl : System.Windows.Forms.UserControl, IProperty method CodeCtl (line 38) | internal CodeCtl(DesignXmlDraw dxDraw) method InitValues (line 48) | private void InitValues() method Dispose (line 72) | protected override void Dispose( bool disposing ) method InitializeComponent (line 89) | private void InitializeComponent() method IsValid (line 154) | public bool IsValid() method Apply (line 159) | public void Apply() method bCheckSyntax_Click (line 168) | private void bCheckSyntax_Click(object sender, System.EventArgs e) method CheckAssembly (line 173) | private void CheckAssembly() method lbErrors_SelectedIndexChanged (line 272) | private void lbErrors_SelectedIndexChanged(object sender, System.Event... method Goto (line 294) | public void Goto(int nLine) FILE: RdlDesign/ColorPicker.cs class ColorPicker (line 10) | public class ColorPicker : ComboBox method ColorPicker (line 17) | public ColorPicker() method OnDrawItem (line 46) | protected override void OnDrawItem(DrawItemEventArgs e) method OnDropDown (line 72) | protected override void OnDropDown(System.EventArgs e) FILE: RdlDesign/ColorPickerPopup.Designer.cs class ColorPickerPopup (line 9) | public partial class ColorPickerPopup : System.Windows.Forms.Form method InitializeComponent (line 16) | private void InitializeComponent() method Dispose (line 58) | protected override void Dispose( bool disposing ) FILE: RdlDesign/ColorPickerPopup.cs class ColorPickerPopup (line 13) | public partial class ColorPickerPopup method ColorPickerPopup (line 18) | public ColorPickerPopup(ColorPicker cp) method OnPaint (line 29) | protected override void OnPaint(PaintEventArgs e) method lbColors_Hide (line 54) | private void lbColors_Hide(object sender, EventArgs e) method ColorPickerPopup_MouseDown (line 59) | private void ColorPickerPopup_MouseDown(object sender, MouseEventArgs e) method ColorPickerPopup_MouseMove (line 73) | private void ColorPickerPopup_MouseMove(object sender, MouseEventArgs e) method ColorPickerPopup_Shown (line 107) | private void ColorPickerPopup_Shown(object sender, EventArgs e) method ColorPickerPopup_KeyPress (line 112) | private void ColorPickerPopup_KeyPress(object sender, KeyPressEventArg... method ColorPickerPopup_Load (line 119) | private void ColorPickerPopup_Load(object sender, EventArgs e) FILE: RdlDesign/Conversions.cs class Conversions (line 8) | public class Conversions method MeasurementTypeAsHundrethsOfAnInch (line 11) | public static int MeasurementTypeAsHundrethsOfAnInch(string value) FILE: RdlDesign/CustomReportItemCtl.cs class CustomReportItemCtl (line 20) | internal class CustomReportItemCtl : System.Windows.Forms.UserControl, I... method CustomReportItemCtl (line 33) | internal CustomReportItemCtl(DesignXmlDraw dxDraw, List repor... method InitValues (line 45) | private void InitValues() method Dispose (line 69) | protected override void Dispose( bool disposing ) method InitializeComponent (line 86) | private void InitializeComponent() method IsValid (line 117) | public bool IsValid() method Apply (line 122) | public void Apply() method bExpr_Click (line 146) | private void bExpr_Click(object sender, EventArgs e) FILE: RdlDesign/DataSetRowsCtl.Designer.cs class DataSetRowsCtl (line 3) | partial class DataSetRowsCtl method Dispose (line 13) | protected override void Dispose( bool disposing ) method InitializeComponent (line 30) | private void InitializeComponent() FILE: RdlDesign/DataSetRowsCtl.cs class DataSetRowsCtl (line 20) | internal partial class DataSetRowsCtl : System.Windows.Forms.UserControl... method DataSetRowsCtl (line 27) | internal DataSetRowsCtl(DesignXmlDraw dxDraw, XmlNode dsNode, DataSetV... method InitValues (line 39) | private void InitValues() method CreateDataTable (line 63) | private void CreateDataTable() method PopulateRows (line 84) | private void PopulateRows(XmlNode rows) method IsValid (line 148) | public bool IsValid() method Apply (line 158) | public void Apply() method bDelete_Click (line 180) | private void bDelete_Click(object sender, System.EventArgs e) method bUp_Click (line 185) | private void bUp_Click(object sender, System.EventArgs e) method bDown_Click (line 198) | private void bDown_Click(object sender, System.EventArgs e) method SwapRow (line 213) | private void SwapRow(DataRow tdr, DataRow fdr) method chkRowsFile_CheckedChanged (line 225) | private void chkRowsFile_CheckedChanged(object sender, System.EventArg... method bRowsFile_Click (line 236) | private void bRowsFile_Click(object sender, System.EventArgs e) method DidFieldsChange (line 262) | private bool DidFieldsChange() method GetXmlData (line 288) | private XmlNode GetXmlData() method DataSetRowsCtl_VisibleChanged (line 322) | private void DataSetRowsCtl_VisibleChanged(object sender, System.Event... method bClear_Click (line 337) | private void bClear_Click(object sender, System.EventArgs e) method bLoad_Click (line 342) | private void bLoad_Click(object sender, System.EventArgs e) FILE: RdlDesign/DataSetsCtl.Designer.cs class DataSetsCtl (line 6) | partial class DataSetsCtl method Dispose (line 16) | protected override void Dispose(bool disposing) method InitializeComponent (line 33) | private void InitializeComponent() FILE: RdlDesign/DataSetsCtl.cs class DataSetsCtl (line 15) | internal partial class DataSetsCtl : System.Windows.Forms.UserControl, I... method DataSetsCtl (line 22) | internal DataSetsCtl(DesignXmlDraw dxDraw, XmlNode dsNode) method InitValues (line 39) | private void InitValues() method SetupScintilla (line 135) | private void SetupScintilla() method IsValid (line 140) | public bool IsValid() method Apply (line 151) | public void Apply() method tbDSName_TextChanged (line 217) | private void tbDSName_TextChanged(object sender, System.EventArgs e) method cbDataSource_SelectedIndexChanged (line 222) | private void cbDataSource_SelectedIndexChanged(object sender, System.E... method tbSQL_TextChanged (line 227) | private void tbSQL_TextChanged(object sender, System.EventArgs e) method bDeleteField_Click (line 232) | private void bDeleteField_Click(object sender, System.EventArgs e) method bRefresh_Click (line 239) | private void bRefresh_Click(object sender, System.EventArgs e) method bEditSQL_Click (line 265) | private void bEditSQL_Click(object sender, System.EventArgs e) method tbTimeout_ValueChanged (line 282) | private void tbTimeout_ValueChanged(object sender, System.EventArgs e) class DataSetValues (line 288) | internal class DataSetValues method DataSetValues (line 299) | internal DataSetValues(string name) method ToString (line 346) | override public string ToString() FILE: RdlDesign/DesignCtl.Designer.cs class DesignCtl (line 9) | public partial class DesignCtl : System.Windows.Forms.UserControl method InitializeComponent (line 146) | private void InitializeComponent() FILE: RdlDesign/DesignCtl.cs class DesignCtl (line 24) | public partial class DesignCtl method DesignCtl (line 61) | public DesignCtl() method SignalReportChanged (line 115) | public void SignalReportChanged() method SignalSelectionMoved (line 120) | public void SignalSelectionMoved() method ClearUndo (line 242) | public void ClearUndo() method Undo (line 251) | public void Undo() method Redo (line 282) | public void Redo() method StartUndoGroup (line 296) | public void StartUndoGroup(string description) method EndUndoGroup (line 301) | public void EndUndoGroup(bool keepChanges) method Align (line 306) | public void Align(TextAlignEnum ta) method AlignLefts (line 318) | public void AlignLefts() method AlignRights (line 338) | public void AlignRights() method AlignCenters (line 372) | public void AlignCenters() method HorizontalCenterInsideContainer (line 415) | public void HorizontalCenterInsideContainer() method VerticalCenterInsideContainer (line 471) | public void VerticalCenterInsideContainer() method AlignTops (line 505) | public void AlignTops() method AlignBottoms (line 525) | public void AlignBottoms() method AlignMiddles (line 559) | public void AlignMiddles() method SizeHeights (line 594) | public void SizeHeights() method SizeWidths (line 613) | public void SizeWidths() method SizeBoth (line 632) | public void SizeBoth() method HorzSpacing (line 657) | void HorzSpacing(float diff) method HorzSpacingDiff (line 683) | float HorzSpacingDiff() method HorzSpacingMakeEqual (line 703) | public void HorzSpacingMakeEqual() method HorzSpacingIncrease (line 711) | public void HorzSpacingIncrease() method HorzSpacingDecrease (line 717) | public void HorzSpacingDecrease() method HorzSpacingMakeZero (line 725) | public void HorzSpacingMakeZero() method VertSpacing (line 730) | void VertSpacing(float diff) method VertSpacingDiff (line 756) | float VertSpacingDiff() method VertSpacingMakeEqual (line 776) | public void VertSpacingMakeEqual() method VertSpacingIncrease (line 784) | public void VertSpacingIncrease() method VertSpacingDecrease (line 790) | public void VertSpacingDecrease() method VertSpacingMakeZero (line 798) | public void VertSpacingMakeZero() method SetPadding (line 803) | public void SetPadding(string name, int diff) method Cut (line 829) | public void Cut() method Copy (line 841) | public void Copy() method Clear (line 846) | public void Clear() method Delete (line 851) | public void Delete() method Paste (line 865) | public void Paste() method SelectAll (line 870) | public void SelectAll() method ApplyStyleToSelected (line 998) | public void ApplyStyleToSelected(string name, string v) method SetSelectedText (line 1009) | public void SetSelectedText(string v) method BuildContextMenus (line 1025) | private void BuildContextMenus() method BuildContextMenusCustom (line 1030) | private void BuildContextMenusCustom(ToolStripDropDownItem menuItem) method DrawPanelPaint (line 1074) | private async void DrawPanelPaint(object sender, System.Windows.Forms.... method Internal_DrawPanelPaint (line 1094) | private async Task Internal_DrawPanelPaint() method CreateEmptyReportDoc (line 1134) | private void CreateEmptyReportDoc() method DrawPanelResize (line 1142) | private void DrawPanelResize(object sender, EventArgs e) method PointsX (line 1149) | internal float PointsX(float x) // pixels to points method PointsY (line 1154) | internal float PointsY(float y) method PixelsX (line 1159) | internal int PixelsX(float x) // points to pixels method PixelsY (line 1164) | internal int PixelsY(float y) method SetScrollControls (line 1170) | internal void SetScrollControls() method SetScrollControlsV (line 1182) | private void SetScrollControlsV() method SetScrollControlsH (line 1212) | private void SetScrollControlsH() method HorizontalScroll (line 1243) | private new void HorizontalScroll(object sender, System.Windows.Forms.... method VerticalScroll (line 1253) | private new void VerticalScroll(object sender, System.Windows.Forms.Sc... method DrawPanelMouseUp (line 1263) | private void DrawPanelMouseUp(object sender, MouseEventArgs E) method DrawPanelContextMenu (line 1303) | private void DrawPanelContextMenu(Point p) method DrawPanelContextMenuChart (line 1323) | private void DrawPanelContextMenuChart(Point p, XmlNode riNode) method DrawPanelContextMenuDefault (line 1372) | private void DrawPanelContextMenuDefault(Point p) method DrawPanelContextMenuMatrix (line 1377) | private void DrawPanelContextMenuMatrix(Point p, XmlNode riNode) method DrawPanelContextMenuSubreport (line 1424) | private void DrawPanelContextMenuSubreport(Point p, XmlNode sr) method DrawPanelContextMenuTable (line 1429) | private void DrawPanelContextMenuTable(Point p, XmlNode riNode) method DrawPanelMouseMove (line 1464) | private void DrawPanelMouseMove(object sender, MouseEventArgs E) method DrawPanelMouseDown (line 1616) | private void DrawPanelMouseDown(object sender, MouseEventArgs E) method SetSelection (line 1667) | internal void SetSelection(XmlNode node) method DrawPanelMouseDownRubberBand (line 1676) | private bool DrawPanelMouseDownRubberBand(object sender, MouseEventArg... method DrawPanelMouseDownTableColumnResize (line 1732) | private bool DrawPanelMouseDownTableColumnResize(object sender, MouseE... method DrawPanelMouseDownTableRowResize (line 1741) | private bool DrawPanelMouseDownTableRowResize(object sender, MouseEven... method DrawPanelMouseDownInsert (line 1750) | private bool DrawPanelMouseDownInsert(HitLocation hl, object sender, M... method DrawPanelDoubleClick (line 1808) | private void DrawPanelDoubleClick(object sender, EventArgs e) method DrawPanelRubberBand (line 1813) | private void DrawPanelRubberBand(Point p1, Point p2) method DrawPanelRectFromPoints (line 1828) | private Rectangle DrawPanelRectFromPoints(Point p1, Point p2) method DrawPanelSetCursor (line 1856) | private void DrawPanelSetCursor(XmlNode node, HitLocationEnum hle) method DrawPanelMouseWheel (line 1914) | private void DrawPanelMouseWheel(object sender, MouseEventArgs E) method DrawPanelKeyDown (line 1950) | private void DrawPanelKeyDown(object sender, KeyEventArgs e) method DesignCtl_Layout (line 2050) | private void DesignCtl_Layout(object sender, LayoutEventArgs e) method menuCopy_Click (line 2063) | private void menuCopy_Click(object sender, EventArgs e) method GetCopy (line 2068) | private string GetCopy() method menuPaste_Click (line 2109) | private void menuPaste_Click(object sender, EventArgs e) method DoPaste (line 2143) | private void DoPaste(XmlNode lNode, PointF p) method menuDelete_Click (line 2195) | private void menuDelete_Click(object sender, EventArgs e) method menuInsertChart_Click (line 2200) | private void menuInsertChart_Click(object sender, EventArgs e) method menuInsertCustomReportItem_Click (line 2266) | private void menuInsertCustomReportItem_Click(object sender, EventArgs e) method menuInsertCustomReportItem (line 2272) | private void menuInsertCustomReportItem(object sender, EventArgs e, st... method menuInsertGrid_Click (line 2306) | private void menuInsertGrid_Click(object sender, EventArgs e) method menuInsertLine_Click (line 2525) | private void menuInsertLine_Click(object sender, EventArgs e) method menuInsertList_Click (line 2531) | private void menuInsertList_Click(object sender, EventArgs e) method menuInsertImage_Click (line 2548) | private void menuInsertImage_Click(object sender, EventArgs e) method menuInsertMatrix_Click (line 2554) | private void menuInsertMatrix_Click(object sender, EventArgs e) method menuInsertRectangle_Click (line 2614) | private void menuInsertRectangle_Click(object sender, EventArgs e) method menuInsertReportItem (line 2620) | private void menuInsertReportItem(object sender, EventArgs e, string r... method menuInsertReportItem (line 2630) | private void menuInsertReportItem(HitLocation hl, string reportItem) method menuInsertSubreport_Click (line 2661) | private void menuInsertSubreport_Click(object sender, EventArgs e) method menuInsertTable_Click (line 2678) | private void menuInsertTable_Click(object sender, EventArgs e) method menuInsertTextbox_Click (line 2738) | private void menuInsertTextbox_Click(object sender, EventArgs e) method menuOpenSubreport_Click (line 2745) | private void menuOpenSubreport_Click(object sender, EventArgs e) method menuSelectAll_Click (line 2762) | private void menuSelectAll_Click(object sender, EventArgs e) method doSelectAll (line 2767) | private void doSelectAll() method menuProperties_Click (line 2786) | internal void menuProperties_Click(object sender, EventArgs e) method menuProperties_Click (line 2791) | internal void menuProperties_Click() method menuChartDeleteGrouping_Click (line 2804) | private void menuChartDeleteGrouping_Click(object sender, EventArgs e) method menuChartEditGrouping_Click (line 2827) | private void menuChartEditGrouping_Click(object sender, EventArgs e) method menuChartInsertCategoryGrouping_Click (line 2860) | private void menuChartInsertCategoryGrouping_Click(object sender, Even... method menuChartInsertSeriesGrouping_Click (line 2898) | private void menuChartInsertSeriesGrouping_Click(object sender, EventA... method menuPropertiesLegend_Click (line 2934) | private void menuPropertiesLegend_Click(object sender, EventArgs e) method menuPropertiesCategoryAxis_Click (line 2939) | private void menuPropertiesCategoryAxis_Click(object sender, EventArgs e) method menuPropertiesValueAxis_Click (line 2944) | private void menuPropertiesValueAxis_Click(object sender, EventArgs e) method menuPropertiesCategoryAxisTitle_Click (line 2949) | private void menuPropertiesCategoryAxisTitle_Click(object sender, Even... method menuPropertiesValueAxisTitle_Click (line 2954) | private void menuPropertiesValueAxisTitle_Click(object sender, EventAr... method menuPropertiesValueAxis2Title_Click (line 2959) | private void menuPropertiesValueAxis2Title_Click(object sender, EventA... method menuPropertiesChartTitle_Click (line 2964) | private void menuPropertiesChartTitle_Click(object sender, EventArgs e) method menuMatrixProperties_Click (line 2969) | private void menuMatrixProperties_Click(object sender, EventArgs e) method menuMatrixDelete_Click (line 2998) | private void menuMatrixDelete_Click(object sender, EventArgs e) method menuMatrixDeleteGroup_Click (line 3016) | private void menuMatrixDeleteGroup_Click(object sender, EventArgs e) method menuMatrixEditGroup_Click (line 3040) | private void menuMatrixEditGroup_Click(object sender, EventArgs e) method menuMatrixInsertColumnGroup_Click (line 3073) | private void menuMatrixInsertColumnGroup_Click(object sender, EventArg... method menuMatrixInsertRowGroup_Click (line 3107) | private void menuMatrixInsertRowGroup_Click(object sender, EventArgs e) method menuTableDeleteColumn_Click (line 3141) | private void menuTableDeleteColumn_Click(object sender, EventArgs e) method menuTableDelete_Click (line 3160) | private void menuTableDelete_Click(object sender, EventArgs e) method menuTableDeleteRow_Click (line 3178) | private void menuTableDeleteRow_Click(object sender, EventArgs e) method menuTableDeleteGroup_Click (line 3196) | private void menuTableDeleteGroup_Click(object sender, EventArgs e) method menuTableEditGroup_Click (line 3219) | private void menuTableEditGroup_Click(object sender, EventArgs e) method menuTableInsertColumnBefore_Click (line 3252) | private void menuTableInsertColumnBefore_Click(object sender, EventArg... method menuTableInsertColumnAfter_Click (line 3268) | private void menuTableInsertColumnAfter_Click(object sender, EventArgs e) method menuTableInsertGroup_Click (line 3284) | private void menuTableInsertGroup_Click(object sender, EventArgs e) method menuTableInsertRowBefore_Click (line 3321) | private void menuTableInsertRowBefore_Click(object sender, EventArgs e) method menuTableInsertRowAfter_Click (line 3338) | private void menuTableInsertRowAfter_Click(object sender, EventArgs e) method menuTableProperties_Click (line 3354) | private void menuTableProperties_Click(object sender, EventArgs e) method DoPropertyDialog (line 3385) | private void DoPropertyDialog(PropertyTypeEnum type) method SetFocus (line 3406) | internal void SetFocus() method menuContext_Popup (line 3411) | private void menuContext_Popup(object sender, EventArgs e) method Dispose (line 3441) | protected override void Dispose(bool disposing) class SubReportEventArgs (line 3453) | public class SubReportEventArgs : EventArgs method SubReportEventArgs (line 3456) | public SubReportEventArgs(string name) : base() class HeightEventArgs (line 3467) | public class HeightEventArgs : EventArgs method HeightEventArgs (line 3471) | public HeightEventArgs(XmlNode node, string height) class MouseEventArgsE (line 3491) | public class MouseEventArgsE : EventArgs method MouseEventArgsE (line 3512) | public MouseEventArgsE(MouseEventArgs B, float ScaleX, float ScaleY) FILE: RdlDesign/DesignEditLines.cs class DesignEditLines (line 18) | public class DesignEditLines : UserControl, System.ComponentModel.ISuppo... method DesignEditLines (line 24) | public DesignEditLines() method DesignEditLinesPaint (line 46) | private void DesignEditLinesPaint(object sender, System.Windows.Forms.... method Lines_Draw (line 51) | private void Lines_Draw(Graphics g) method editor_Resize (line 97) | private void editor_Resize(object sender, EventArgs e) method editor_VScroll (line 105) | private void editor_VScroll(object sender, EventArgs e) method editor_TextChanged (line 113) | private void editor_TextChanged(object sender, System.EventArgs e) method BeginInit (line 132) | void System.ComponentModel.ISupportInitialize.BeginInit() method EndInit (line 137) | void System.ComponentModel.ISupportInitialize.EndInit() FILE: RdlDesign/DesignRuler.cs class DesignRuler (line 19) | internal class DesignRuler : UserControl, System.ComponentModel.ISupport... method DesignRuler (line 32) | internal DesignRuler() method DesignRulerPaint (line 94) | private void DesignRulerPaint(object sender, System.Windows.Forms.Pain... method HeightChanged (line 105) | private void HeightChanged(object sender, HeightEventArgs e) method ScrollChanged (line 119) | private void ScrollChanged(object sender, System.EventArgs e) method Ruler_DrawHorz (line 125) | private void Ruler_DrawHorz(Graphics g) method Ruler_DrawVert (line 215) | private void Ruler_DrawVert(Graphics g) method Ruler_DrawVertPart (line 322) | private void Ruler_DrawVertPart(Graphics g, Font f, StringFormat df, f... method BeginInit (line 383) | void System.ComponentModel.ISupportInitialize.BeginInit() method EndInit (line 388) | void System.ComponentModel.ISupportInitialize.EndInit() FILE: RdlDesign/DesignXmlDraw.cs class DesignXmlDraw (line 26) | public class DesignXmlDraw: UserControl method DesignXmlDraw (line 84) | internal DesignXmlDraw():base() method IsInputKey (line 117) | override protected bool IsInputKey(Keys keyData) method GetRectangle (line 241) | internal RectangleF GetRectangle(XmlNode xNode) method GetRectReportPrimaryRegions (line 263) | private float GetRectReportPrimaryRegions(XmlNode xNode, float xLoc, f... method GetRectReportItems (line 292) | private void GetRectReportItems(XmlNode xNode, RectangleF r) method GetRectRI (line 332) | private RectangleF GetRectRI(XmlNode xNode, RectangleF r) method GetRectListRectangle (line 338) | private RectangleF GetRectListRectangle(XmlNode xNode, RectangleF r) method GetRectMatrix (line 350) | private RectangleF GetRectMatrix(XmlNode xNode, RectangleF r) method GetRectTable (line 361) | private RectangleF GetRectTable(XmlNode xNode, RectangleF r) method GetReportItemContainer (line 411) | internal XmlNode GetReportItemContainer(XmlNode xNode) method GetReportItemDataRegionContainer (line 432) | internal XmlNode GetReportItemDataRegionContainer(XmlNode xNode) method IsDataRegion (line 444) | internal bool IsDataRegion(XmlNode node) method GetReportItemDataRegionFields (line 461) | internal string[] GetReportItemDataRegionFields(XmlNode xNode, bool bE... method ApplyStyleToSelected (line 478) | internal void ApplyStyleToSelected(string name, string v) method DataSourceName (line 505) | internal XmlNode DataSourceName(string dsn) method GetFields (line 518) | internal string[] GetFields(string dataSetName, bool asExpression) method GetReportParameterDefaultValue (line 523) | internal string GetReportParameterDefaultValue(string parameterExpress... method GetReportParameters (line 528) | internal string[] GetReportParameters(bool asExpression) method GetReportModules (line 538) | internal string[] GetReportModules(bool asExpression) method GetReportClasses (line 548) | internal string[] GetReportClasses(bool asExpression) method SelectionPosition (line 554) | internal PointF SelectionPosition(XmlNode xNode) method SelectionSize (line 560) | internal SizeF SelectionSize(XmlNode xNode) method AddRemoveSelection (line 607) | internal void AddRemoveSelection(XmlNode node) method AddSelection (line 616) | internal void AddSelection(XmlNode node) method ClearSelected (line 624) | internal void ClearSelected() method DeleteSelected (line 633) | internal void DeleteSelected() method IsNodeSelected (line 647) | internal bool IsNodeSelected(XmlNode node) method RemoveSelection (line 661) | internal void RemoveSelection(XmlNode node) method SelectNext (line 667) | internal bool SelectNext(bool bReverse) method CountChildren (line 683) | static internal int CountChildren(XmlNode node, params string[] names) method CountChildren (line 688) | static private int CountChildren(XmlNode node, string[] names, int index) method FindCreateNextInHierarchy (line 703) | internal XmlNode FindCreateNextInHierarchy(XmlNode xNode, params strin... method FindNextInHierarchy (line 726) | static internal XmlNode FindNextInHierarchy(XmlNode xNode, params stri... method SetSelection (line 772) | internal void SetSelection(XmlNode node, bool bGroup) method RightMost (line 814) | private float RightMost(XmlNode xNode) method RightMostRI (line 835) | private float RightMostRI(XmlNode xNode) method DeleteMatrix (line 876) | internal bool DeleteMatrix(XmlNode node) method DeleteReportItem (line 893) | internal bool DeleteReportItem(XmlNode node) method DeleteTable (line 941) | internal bool DeleteTable(XmlNode node) method Draw (line 958) | internal async Task Draw(Graphics ag, float hScroll, float vScroll, Sy... method ProcessReport (line 994) | private void ProcessReport(XmlNode xNode) method CreatePrimaryRegion (line 1061) | private XmlNode CreatePrimaryRegion(string name) method DrawReportPrimaryRegions (line 1077) | private async Task DrawReportPrimaryRegions(XmlNode xNode, floa... method DrawReportItems (line 1174) | private async Task DrawReportItems(XmlNode xNode, RectangleF r) method DrawReportItemsOrdered (line 1242) | private List DrawReportItemsOrdered(XmlNode xNode) method DrawReportItemsOrdered (line 1247) | private List DrawReportItemsOrdered(XmlNode xNode, bool reverse) method GetReportItemRect (line 1269) | public RectangleF GetReportItemRect(XmlNode xNode, RectangleF r) method GetOutOfBoundsRightReportItemRect (line 1287) | private RectangleF GetOutOfBoundsRightReportItemRect(XmlNode xNode, Re... method GetOutOfBoundsBottomReportItemRect (line 1313) | private RectangleF GetOutOfBoundsBottomReportItemRect(XmlNode xNode, R... method GetReportItemRect (line 1342) | internal RectangleF GetReportItemRect(XmlNode xNode) method GetLineEnds (line 1374) | private void GetLineEnds(XmlNode xNode, RectangleF r, out PointF l1, o... method SetReportItemHeightWidth (line 1408) | private void SetReportItemHeightWidth(XmlNode xNode, float height, flo... method SetReportItemXY (line 1414) | private void SetReportItemXY(XmlNode xNode, float x, float y) method RemoveReportItemLTHW (line 1420) | private void RemoveReportItemLTHW(XmlNode ri) method DrawChart (line 1436) | private async Task DrawChart(XmlNode xNode, RectangleF r) method GetCustomReportItemType (line 1465) | internal string GetCustomReportItemType(string type) method DrawCustomReportItem (line 1502) | private async Task DrawCustomReportItem(XmlNode xNode, Rec... method DrawImage (line 1549) | private async Task DrawImage(XmlNode xNode, RectangleF r) method DrawImageEmbedded (line 1593) | private bool DrawImageEmbedded(XmlNode iNode, XmlNode sNode, XmlNode v... method GetImageEmbedded (line 1650) | private System.Drawing.Image GetImageEmbedded(string emName) method DrawImageExternal (line 1698) | private async Task DrawImageExternal(XmlNode iNode, XmlNode sNod... method GetSizing (line 1745) | ImageSizingEnum GetSizing(XmlNode iNode) method DrawImageSized (line 1754) | private bool DrawImageSized(XmlNode iNode, Image im, StyleInfo si, Rec... method DrawImageSized (line 1759) | private bool DrawImageSized(XmlNode iNode, ImageSizingEnum ise, Image ... method DrawImageSized (line 1764) | private bool DrawImageSized(XmlNode iNode, Image im, StyleInfo si, Rec... method DrawImageSized (line 1770) | private bool DrawImageSized(XmlNode iNode, ImageSizingEnum ise, Image ... method DrawList (line 1869) | private async Task DrawList(XmlNode xNode, RectangleF r) method DrawLine (line 1884) | private async Task DrawLine(XmlNode xNode, RectangleF r) method DrawMatrix (line 1903) | private async Task DrawMatrix(XmlNode xNode, RectangleF r) method DrawRectangle (line 1935) | private async Task DrawRectangle(XmlNode xNode, RectangleF r) method DrawSelected (line 1950) | private void DrawSelected(XmlNode xNode, RectangleF r) method HighLightTableRegion (line 1997) | private void HighLightTableRegion(XmlNode xNode,RectangleF r) method DrawSelectedLine (line 2069) | private void DrawSelectedLine(XmlNode xNode, RectangleF r) method DrawOutOfBounds (line 2083) | private async Task DrawOutOfBounds(XmlNode xNode, RectangleF r) method DrawSubreport (line 2104) | private async Task DrawSubreport(XmlNode xNode, RectangleF r) method DrawTable (line 2114) | private async Task DrawTable(XmlNode xNode, RectangleF r) method GetTableColumnCount (line 2168) | private int GetTableColumnCount(XmlNode tblNode) method GetTableSections (line 2182) | private Dictionary> GetTableSections(XmlNode xNode) method GetTableRows (line 2237) | private List GetTableRows(XmlNode xNode) method GetTableGroupsRows (line 2273) | private void GetTableGroupsRows(XmlNode xNode, List trs, stri... method GetTableGroupRowsNodes (line 2302) | private Dictionary> GetTableGroupRowsNodes(XmlNod... method GetTableRowsAdd (line 2329) | private void GetTableRowsAdd(XmlNode xNode, List trs) method GetTableRowsNodes (line 2342) | private List GetTableRowsNodes(XmlNode xNode) method GetTableRowsHeight (line 2360) | private float GetTableRowsHeight(List trs) method GetTableColumnWidths (line 2372) | private float[] GetTableColumnWidths(XmlNode xNode) method DrawTextbox (line 2392) | private async Task DrawTextbox(XmlNode xNode, RectangleF r) method DrawMargins (line 2405) | private void DrawMargins(RectangleF behindPage) method GetNamedChildNode (line 2432) | internal XmlNode GetNamedChildNode(XmlNode xNode, string elementName, ... method GetNamedChildNode (line 2451) | internal XmlNode GetNamedChildNode(XmlNode xNode, string name) method GetCreateNamedChildNode (line 2471) | internal XmlNode GetCreateNamedChildNode(XmlNode xNode, string name) method GetCreateNamedChildNode (line 2489) | internal XmlNode GetCreateNamedChildNode(XmlNode xNode, string name, s... method GetStyleInfo (line 2505) | internal async Task GetStyleInfo(XmlNode xNode) method GetStyleColor (line 2608) | private Color GetStyleColor(string c) method GetStyleInfoBorderColor (line 2625) | private void GetStyleInfoBorderColor(XmlNode xNode, StyleInfo si) method GetStyleInfoBorderStyle (line 2663) | private void GetStyleInfoBorderStyle(XmlNode xNode, StyleInfo si) method GetBorderStyle (line 2700) | BorderStyleEnum GetBorderStyle(string v, BorderStyleEnum def) method GetStyleInfoBorderWidth (line 2714) | private void GetStyleInfoBorderWidth(XmlNode xNode, StyleInfo si) method GetStyleInfoBackgroundImage (line 2750) | private async Task GetStyleInfoBackgroundImage(XmlNode xNode, StyleInf... method GetSize (line 2860) | internal float GetSize(XmlNode pNode, string name) method GetSize (line 2868) | static internal float GetSize(string t) method DrawBackground (line 2937) | private void DrawBackground(System.Drawing.RectangleF rect, StyleInfo si) method DrawImageBackground (line 3007) | private void DrawImageBackground(PageImage pi, StyleInfo si, Rectangle... method DrawBorder (line 3079) | private void DrawBorder(StyleInfo si, RectangleF r) method DrawCircle (line 3098) | private void DrawCircle(Color c, BorderStyleEnum bs, float penWidth, f... method DrawLine (line 3143) | private void DrawLine(Color c, BorderStyleEnum bs, float w, method DrawString (line 3197) | private void DrawString(string text, StyleInfo si, RectangleF r, bool ... method PasteImage (line 3334) | internal void PasteImage(XmlNode parent, System.Drawing.Bitmap img, Po... method ReplaceReportItems (line 3387) | internal void ReplaceReportItems(HitLocation hl, string rItems) method PasteReportItems (line 3402) | internal void PasteReportItems(XmlNode parent, string rItems, PointF p) method PasteValidate (line 3478) | void PasteValidate(XmlNode parent, XmlNode pitems) method PasteValidateRecurse (line 3487) | void PasteValidateRecurse(XmlNode pitems) method ReplaceTableMatrixOrChart (line 3510) | internal XmlNode ReplaceTableMatrixOrChart(HitLocation hl, string rTable) method PasteTableMatrixOrChart (line 3525) | internal XmlNode PasteTableMatrixOrChart(XmlNode parent, string sTable... method PasteNewNames (line 3576) | private void PasteNewNames(XmlNode node) method SelectInRectangle (line 3618) | internal void SelectInRectangle(Rectangle r, float hScroll, float vScr... method SelectInReportItems (line 3679) | private void SelectInReportItems(XmlNode xNode, RectangleF r) method AdvancedLineCollision (line 3744) | private bool AdvancedLineCollision(PointF p1, PointF p2, RectangleF _hr) method IsIntersectingLineSegments (line 3778) | static bool IsIntersectingLineSegments(PointF a, PointF b, PointF c, P... method SelectInList (line 3793) | private void SelectInList(XmlNode xNode, RectangleF r) method SelectInMatrix (line 3808) | private void SelectInMatrix(XmlNode xNode, RectangleF r) method SelectInRectangle (line 3838) | private void SelectInRectangle(XmlNode xNode, RectangleF r) method SelectInTable (line 3853) | private void SelectInTable(XmlNode xNode, RectangleF r) method TableColumnResize (line 3908) | internal bool TableColumnResize(XmlNode tcNode, int xInc) method TableRowResize (line 3922) | internal bool TableRowResize(XmlNode trNode, int yInc) method HitContainer (line 3942) | internal HitLocation HitContainer(Point p, float hScroll, float vScroll) method HitNode (line 3960) | internal HitLocation HitNode(Point p, float hScroll, float vScroll) method HitNode (line 3972) | internal HitLocation HitNode(Point p, float hScroll, float vScroll, bo... method HitNodeTest (line 4045) | internal HitLocation HitNodeTest(RectangleF rf, PointF _HitPoint, XmlN... method ChangeHeight (line 4075) | internal bool ChangeHeight(XmlNode b, int inc, float minValue) method ChangeWidth (line 4101) | internal bool ChangeWidth(XmlNode b, int inc, float minValue) method HitReportItems (line 4121) | private HitLocation HitReportItems(XmlNode xNode, RectangleF r) method HitList (line 4167) | private HitLocation HitList(XmlNode xNode, RectangleF r) method HitLine (line 4172) | private HitLocation HitLine(XmlNode xNode, RectangleF r) method InsidePolygon (line 4222) | private bool InsidePolygon(PointF[] points, PointF p) method HitMatrix (line 4234) | private HitLocation HitMatrix(XmlNode xNode, RectangleF r) method HitMatrixColumnResize (line 4282) | private HitLocation HitMatrixColumnResize(XmlNode xNode, MatrixView ma... method HitMatrixRowResize (line 4351) | private HitLocation HitMatrixRowResize(XmlNode xNode, MatrixView matri... method HitRectangle (line 4420) | private HitLocation HitRectangle(XmlNode xNode, RectangleF r) method HitReportItem (line 4442) | private HitLocation HitReportItem(XmlNode xNode, RectangleF r) method HitTable (line 4497) | private HitLocation HitTable(XmlNode xNode, RectangleF r) method HitTableColumnResize (line 4572) | private HitLocation HitTableColumnResize(XmlNode xNode, RectangleF r, ... method HitTableRowResize (line 4614) | private HitLocation HitTableRowResize(XmlNode xNode, RectangleF r, Lis... method MoveReportItem (line 4639) | internal bool MoveReportItem(XmlNode b, int xInc, int yInc) method MoveSelectedItems (line 4701) | internal bool MoveSelectedItems(int xInc, int yInc, HitLocationEnum hle) method ResizeReportItem (line 4739) | internal bool ResizeReportItem(XmlNode xNode, int xInc, int yInc, HitL... method CreateElement (line 4899) | internal XmlElement CreateElement(XmlNode parent, string name, string ... method NameError (line 4933) | internal string NameError(XmlNode xNode, string name) method GroupingNameCheck (line 4938) | internal string GroupingNameCheck(XmlNode xNode, string name) method SetName (line 4943) | internal bool SetName(XmlNode xNode, string name) method SetGroupName (line 4948) | internal bool SetGroupName(XmlNode xNode, string name) method SetElementAttribute (line 4953) | internal void SetElementAttribute(XmlNode parent, string name, string ... method RemoveElement (line 4970) | internal void RemoveElement(XmlNode parent, string name) method RemoveElementAll (line 4980) | internal void RemoveElementAll(XmlNode parent, string name) method GetDataSetNameValue (line 4991) | internal string GetDataSetNameValue(XmlNode dataRegion) method GetElementAttribute (line 5015) | internal string GetElementAttribute(XmlNode parent, string name, strin... method GetElementValue (line 5024) | internal string GetElementValue(XmlNode parent, string name, string de... method SetElement (line 5033) | internal XmlNode SetElement(XmlNode parent, string name, string val) method SetTableCellColSpan (line 5043) | internal void SetTableCellColSpan(XmlNode tcell, string val) method GetReportNode (line 5097) | internal XmlNode GetReportNode() method GetReportItems (line 5102) | internal IEnumerable GetReportItems(string query) method DeleteChartGrouping (line 5132) | internal bool DeleteChartGrouping(XmlNode dynamic) method DeleteChartGrouping (line 5153) | internal bool DeleteChartGrouping(XmlNode chart, string gname) method GetChartCategoryGroupNames (line 5166) | internal string[] GetChartCategoryGroupNames(XmlNode chart) method GetChartSeriesGroupNames (line 5192) | internal string[] GetChartSeriesGroupNames(XmlNode chart) method GetChartGrouping (line 5218) | internal XmlNode GetChartGrouping(XmlNode chart, string gname) method GetChartGroupName (line 5231) | XmlNode GetChartGroupName(XmlNode chart, string gname, string search1,... method InsertChartCategoryGrouping (line 5251) | internal XmlNode InsertChartCategoryGrouping(XmlNode chart) method InsertChartSeriesGrouping (line 5267) | internal XmlNode InsertChartSeriesGrouping(XmlNode chart) method InMatrix (line 5283) | internal bool InMatrix(XmlNode node) method GetMatrixFromReportItem (line 5307) | internal XmlNode GetMatrixFromReportItem(XmlNode riNode) method GetMatrixColumnGroupNames (line 5323) | internal string[] GetMatrixColumnGroupNames(XmlNode riNode) method GetMatrixRowGroupNames (line 5355) | internal string[] GetMatrixRowGroupNames(XmlNode riNode) method InsertMatrixColumnGroup (line 5382) | internal XmlNode InsertMatrixColumnGroup(XmlNode node) method InsertMatrixRowGroup (line 5402) | internal XmlNode InsertMatrixRowGroup(XmlNode node) method DeleteMatrixGroup (line 5422) | internal bool DeleteMatrixGroup(XmlNode dynamic) method DeleteMatrixGroup (line 5440) | internal bool DeleteMatrixGroup(XmlNode riNode, string gname) method GetMatrixGroup (line 5466) | internal XmlNode GetMatrixGroup(XmlNode riNode, string gname) method GetMatrixColumnGroupFromName (line 5480) | internal XmlNode GetMatrixColumnGroupFromName(XmlNode matrix, string g... method GetMatrixRowGroupFromName (line 5500) | internal XmlNode GetMatrixRowGroupFromName(XmlNode matrix, string gname) method GetTableFromReportItem (line 5520) | internal XmlNode GetTableFromReportItem(XmlNode riNode) method GetTableCell (line 5535) | internal XmlNode GetTableCell(XmlNode node) method GetTableColumn (line 5552) | internal XmlNode GetTableColumn(XmlNode node) method GetTableRow (line 5591) | internal XmlNode GetTableRow(XmlNode node) method DeleteTableColumn (line 5608) | internal bool DeleteTableColumn(XmlNode node) method DeleteTableColumn (line 5652) | private void DeleteTableColumn(XmlNode sNode, int col) method GetTableColumnNumber (line 5698) | private int GetTableColumnNumber(XmlNode tcell) method DeleteTableRow (line 5719) | internal bool DeleteTableRow(XmlNode node) method DeleteTableGroup (line 5763) | internal bool DeleteTableGroup(XmlNode riNode, string gname) method GetTableGroup (line 5805) | internal XmlNode GetTableGroup(XmlNode riNode, string gname) method GetTableGroupNames (line 5835) | internal string[] GetTableGroupNames(XmlNode riNode) method InsertTableColumn (line 5868) | internal bool InsertTableColumn(XmlNode node, bool before) method InsertTableColumn (line 5930) | private void InsertTableColumn(XmlNode tcells, int col, bool before) method InsertTableColumn (line 5971) | private void InsertTableColumn(XmlNode tcells, XmlNode refCell, bool b... method InsertTableGroup (line 6003) | internal XmlNode InsertTableGroup(XmlNode node) method DeleteTableGroup (line 6024) | internal void DeleteTableGroup(XmlNode tgrp) method InsertTableRow (line 6044) | internal bool InsertTableRow(XmlNode node, bool before) method InsertTableRow (line 6120) | internal bool InsertTableRow(XmlNode tblRows) method InPageHeaderOrFooter (line 6157) | internal bool InPageHeaderOrFooter(XmlNode node) method InTable (line 6172) | internal bool InTable(XmlNode node) method InGrid (line 6189) | internal bool InGrid(XmlNode node) method TMParent (line 6206) | internal XmlNode TMParent(XmlNode node) method PixelsX (line 6218) | private int PixelsX(float x) // points to pixels method PixelsY (line 6223) | private int PixelsY(float y) method PointsX (line 6228) | private float PointsX(float x) // pixels to points method PointsY (line 6233) | private float PointsY(float y) method SectionBelongsTo (line 6243) | public string SectionBelongsTo(XmlNode node) method WidthOfContainer (line 6261) | public float WidthOfContainer(XmlNode node) method HeightOfContainer (line 6281) | public float HeightOfContainer(XmlNode node) type HitLocationEnum (line 6313) | internal enum HitLocationEnum class HitLocation (line 6331) | internal class HitLocation method HitLocation (line 6337) | internal HitLocation (XmlNode hn, XmlNode hc, HitLocationEnum location... class ReportItemSorter (line 6345) | internal class ReportItemSorter: IComparer method ReportItemSorter (line 6348) | internal ReportItemSorter(DesignXmlDraw d) method Compare (line 6355) | public int Compare(XmlNode x, XmlNode y) class ReportItemReverseSorter (line 6367) | internal class ReportItemReverseSorter : IComparer method ReportItemReverseSorter (line 6370) | [System.Diagnostics.DebuggerStepThrough] method Compare (line 6378) | [System.Diagnostics.DebuggerStepThrough] FILE: RdlDesign/DesignerUtility.cs class DesignerUtility (line 24) | internal static class DesignerUtility method ColorFromHtml (line 26) | static internal Color ColorFromHtml(string sc, Color dc) method FillOdbcNames (line 43) | static internal void FillOdbcNames(ComboBox cbOdbcNames) method FormatXml (line 92) | static internal string FormatXml(string sDoc) method GetSharedConnectionInfo (line 109) | static internal bool GetSharedConnectionInfo(RdlUserControl dsr, strin... method GetSharedConnectionInfo (line 153) | static internal bool GetSharedConnectionInfo(RdlDesigner dsr, string f... method GetSqlData (line 195) | static internal void GetSqlData(string dataProvider, string connection... method GetConnnectionInfo (line 248) | static internal bool GetConnnectionInfo(DesignXmlDraw d, string ds, ou... method ExtractParameterNameFromParameterExpression (line 300) | public static string ExtractParameterNameFromParameterExpression(strin... method GetSqlColumns (line 312) | static internal List GetSqlColumns(DesignXmlDraw d, string ... method GetSqlColumns (line 325) | static internal List GetSqlColumns(DesignXmlDraw d, string ... method GetSqlColumns (line 371) | static internal List GetSqlColumns(string dataProvider, str... method GetSchemaInfo (line 425) | static internal List GetSchemaInfo(DesignXmlDraw d, str... method GetSchemaInfo (line 436) | static internal List GetSchemaInfo(string dataProvider,... method GetSchemaInfo (line 520) | static internal List GetSchemaInfo(System.Data.SqlClien... method GetSchemaInfo (line 559) | static internal List GetSchemaInfo(System.Data.OleDb.Ol... method GetSchemaInfo (line 589) | static internal List GetSchemaInfo(System.Data.Odbc.Odb... method NormalizeSqlName (line 619) | static internal string NormalizeSqlName(string name) method TestConnection (line 649) | static internal bool TestConnection(string dataProvider, string connec... method IsNumeric (line 674) | static internal bool IsNumeric(Type t) method ValidateSize (line 698) | internal static void ValidateSize(string t, bool bZero, bool bMinus) method MakeValidSize (line 746) | static internal string MakeValidSize(string t, bool bZero) method MakeValidSize (line 756) | static internal string MakeValidSize(string t, bool bZero, bool bNegat... method AddParameters (line 783) | static private void AddParameters(IDbCommand cmSQL, DataTable parameters) method AddParameters (line 805) | static private void AddParameters(IDbCommand cmSQL, IList parameters) method RelativePathTo (line 864) | public static string RelativePathTo(string fromDirectory, string toPath) class SqlColumn (line 914) | internal class SqlColumn method ToString (line 919) | override public string ToString() class SqlSchemaInfo (line 937) | internal class SqlSchemaInfo : IComparable method CompareTo (line 956) | int IComparable.CompareTo(SqlSchemaInfo other) class ReportParm (line 966) | internal class ReportParm method ReportParm (line 986) | internal ReportParm(string name) method ToString (line 1120) | override public string ToString() class ParameterValueItem (line 1126) | internal class ParameterValueItem class StaticLists (line 1132) | internal static class StaticLists method ArrayToFormattedList (line 1514) | public static List ArrayToFormattedList(IEnumerable ar... FILE: RdlDesign/DialogAbout.Designer.cs class DialogAbout (line 9) | public partial class DialogAbout : System.Windows.Forms.Form method InitializeComponent (line 23) | private void InitializeComponent() method Dispose (line 116) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogAbout.cs class DialogAbout (line 12) | public partial class DialogAbout method DialogAbout (line 14) | public DialogAbout() method lnk_LinkClicked (line 27) | private void lnk_LinkClicked(object sender, LinkLabelLinkClickedEventA... FILE: RdlDesign/DialogDataSourceRef.Designer.cs class DialogDataSourceRef (line 9) | public partial class DialogDataSourceRef : System.Windows.Forms.Form method InitializeComponent (line 33) | private void InitializeComponent() method Dispose (line 201) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogDataSourceRef.cs class DialogDataSourceRef (line 16) | public partial class DialogDataSourceRef method DialogDataSourceRef (line 18) | public DialogDataSourceRef() method bGetFilename_Click (line 33) | private void bGetFilename_Click(object sender, System.EventArgs e) method validate_TextChanged (line 58) | private void validate_TextChanged(object sender, System.EventArgs e) method bOK_Click (line 70) | private void bOK_Click(object sender, System.EventArgs e) method bTestConnection_Click (line 98) | private void bTestConnection_Click(object sender, System.EventArgs e) method cbDataProvider_SelectedIndexChanged (line 105) | private void cbDataProvider_SelectedIndexChanged(object sender, System... method cbOdbcNames_SelectedIndexChanged (line 119) | private void cbOdbcNames_SelectedIndexChanged(object sender, System.Ev... FILE: RdlDesign/DialogDataSources.Designer.cs class DialogDataSources (line 9) | internal partial class DialogDataSources : System.Windows.Forms.Form method InitializeComponent (line 34) | private void InitializeComponent() method Dispose (line 212) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogDataSources.cs class DialogDataSources (line 18) | internal partial class DialogDataSources method DialogDataSources (line 23) | internal DialogDataSources(Uri filename, DesignXmlDraw draw) method InitValues (line 35) | private void InitValues() method Apply (line 91) | public void Apply() method bGetFilename_Click (line 123) | private void bGetFilename_Click(object sender, System.EventArgs e) method tbFilename_TextChanged (line 172) | private void tbFilename_TextChanged(object sender, System.EventArgs e) method bOK_Click (line 186) | private void bOK_Click(object sender, System.EventArgs e) method bTestConnection_Click (line 220) | private void bTestConnection_Click(object sender, System.EventArgs e) method tbDSName_TextChanged (line 238) | private void tbDSName_TextChanged(object sender, System.EventArgs e) method chkSharedDataSource_CheckedChanged (line 260) | private void chkSharedDataSource_CheckedChanged(object sender, System.... method lbDataSources_SelectedIndexChanged (line 286) | private void lbDataSources_SelectedIndexChanged(object sender, System.... method bAdd_Click (line 306) | private void bAdd_Click(object sender, System.EventArgs e) method bRemove_Click (line 316) | private void bRemove_Click(object sender, System.EventArgs e) method tbDSName_Validating (line 330) | private void tbDSName_Validating(object sender, System.ComponentModel.... method tbConnection_TextChanged (line 345) | private void tbConnection_TextChanged(object sender, System.EventArgs e) method tbPrompt_TextChanged (line 358) | private void tbPrompt_TextChanged(object sender, System.EventArgs e) method cbDataProvider_SelectedIndexChanged (line 371) | private void cbDataProvider_SelectedIndexChanged(object sender, System... method ckbIntSecurity_CheckedChanged (line 384) | private void ckbIntSecurity_CheckedChanged(object sender, System.Event... method bExprConnect_Click (line 397) | private void bExprConnect_Click(object sender, System.EventArgs e) class DataSourceValues (line 413) | class DataSourceValues method DataSourceValues (line 424) | internal DataSourceValues(string name) method ToString (line 477) | override public string ToString() FILE: RdlDesign/DialogDatabase.Designer.cs class DialogDatabase (line 3) | public partial class DialogDatabase : System.Windows.Forms.Form method Dispose (line 7) | protected override void Dispose(bool disposing) method InitializeComponent (line 20) | private void InitializeComponent() FILE: RdlDesign/DialogDatabase.cs class DialogDatabase (line 24) | public partial class DialogDatabase method DialogDatabase (line 258) | public DialogDatabase(RdlDesigner rDesigner) method DialogDatabase (line 275) | public DialogDatabase(RdlUserControl rDesigner) type ConnectionType (line 290) | public enum ConnectionType method SetConnection (line 308) | public void SetConnection(string connectionString, bool hideConnection... method btnOK_Click (line 354) | private void btnOK_Click(object sender, System.EventArgs e) method tabControl1_SelectedIndexChanged (line 363) | private async void tabControl1_SelectedIndexChanged(object sender, Sys... method DoSqlSchema (line 391) | private void DoSqlSchema() method DoGrouping (line 445) | private void DoGrouping() method DoReportSyntax (line 467) | private bool DoReportSyntax(bool UseFullSharedDSName) method GetFieldName (line 809) | private string GetFieldName(string sqlName) method DoAlignAndCanGrow (line 822) | private void DoAlignAndCanGrow(Type t, out string canGrow, out string ... method DoReportSyntaxParameters (line 848) | private void DoReportSyntaxParameters(CultureInfo cinfo, StringBuilder... method DoReportSyntaxQParameters (line 889) | private void DoReportSyntaxQParameters(CultureInfo cinfo, StringBuilde... method DoReportPreview (line 921) | private async Task DoReportPreview() method GetDataProvider (line 938) | private string GetDataProvider() method GetDataConnection (line 962) | private string GetDataConnection() method tvTablesColumns_BeforeExpand (line 967) | private void tvTablesColumns_BeforeExpand(object sender, System.Window... method tvTablesColumns_ExpandTable (line 972) | private void tvTablesColumns_ExpandTable(TreeNode tNode) method tbSQL_DragEnter (line 1001) | private void tbSQL_DragEnter(object sender, System.Windows.Forms.DragE... method tbSQL_DragDrop (line 1007) | private void tbSQL_DragDrop(object sender, System.Windows.Forms.DragEv... method tvTablesColumns_MouseDown (line 1013) | private void tvTablesColumns_MouseDown(object sender, System.Windows.F... method DialogDatabase_Closed (line 1050) | private void DialogDatabase_Closed(object sender, System.EventArgs e) method tbSQL_TextChanged (line 1056) | private void tbSQL_TextChanged(object sender, System.EventArgs e) method tbReportName_TextChanged (line 1065) | private void tbReportName_TextChanged(object sender, System.EventArgs e) method tbReportDescription_TextChanged (line 1070) | private void tbReportDescription_TextChanged(object sender, System.Eve... method tbReportAuthor_TextChanged (line 1075) | private void tbReportAuthor_TextChanged(object sender, System.EventArg... method rbTable_CheckedChanged (line 1080) | private void rbTable_CheckedChanged(object sender, System.EventArgs e) method rbList_CheckedChanged (line 1094) | private void rbList_CheckedChanged(object sender, System.EventArgs e) method rbMatrix_CheckedChanged (line 1099) | private void rbMatrix_CheckedChanged(object sender, System.EventArgs e) method rbChart_CheckedChanged (line 1104) | private void rbChart_CheckedChanged(object sender, System.EventArgs e) method tbConnection_TextChanged (line 1274) | private void tbConnection_TextChanged(object sender, System.EventArgs e) method emptyReportSyntax (line 1279) | private void emptyReportSyntax(object sender, System.EventArgs e) method bMove_Click (line 1284) | private void bMove_Click(object sender, System.EventArgs e) method cbConnectionTypes_SelectedIndexChanged (line 1345) | private void cbConnectionTypes_SelectedIndexChanged(object sender, Sys... method cbOdbcNames_SelectedIndexChanged (line 1413) | private void cbOdbcNames_SelectedIndexChanged(object sender, System.Ev... method bTestConnection_Click (line 1419) | private void bTestConnection_Click(object sender, System.EventArgs e) method DBConnection_Validating (line 1436) | private void DBConnection_Validating(object sender, System.ComponentMo... method bShared_Click (line 1442) | private void bShared_Click(object sender, System.EventArgs e) method buttonSqliteSelectDatabase_Click (line 1467) | private void buttonSqliteSelectDatabase_Click(object sender, EventArgs e) method buttonSearchSqlServers_Click (line 1514) | private void buttonSearchSqlServers_Click(object sender, EventArgs e) method buttonDatabaseSearch_Click (line 1546) | private void buttonDatabaseSearch_Click(object sender, EventArgs e) method tbSQL_KeyDown (line 1601) | private void tbSQL_KeyDown(object sender, KeyEventArgs e) method DialogDatabase_Load (line 1610) | private void DialogDatabase_Load(object sender, EventArgs e) method comboServerList_SelectedIndexChanged (line 1615) | private void comboServerList_SelectedIndexChanged(object sender, Event... method comboDatabaseList_SelectedIndexChanged (line 1637) | private void comboDatabaseList_SelectedIndexChanged(object sender, Eve... method rbEmpty_CheckedChanged (line 1658) | private void rbEmpty_CheckedChanged(object sender, EventArgs e) FILE: RdlDesign/DialogEmbeddedImages.Designer.cs class DialogEmbeddedImages (line 9) | internal partial class DialogEmbeddedImages : System.Windows.Forms.Form method InitializeComponent (line 26) | private void InitializeComponent() method Dispose (line 137) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogEmbeddedImages.cs class DialogEmbeddedImages (line 20) | internal partial class DialogEmbeddedImages method DialogEmbeddedImages (line 22) | public DialogEmbeddedImages(DesignXmlDraw draw) method InitValues (line 33) | private void InitValues() method Apply (line 61) | public void Apply() method bPaste_Click (line 82) | private void bPaste_Click(object sender, System.EventArgs e) method bImport_Click (line 111) | private void bImport_Click(object sender, System.EventArgs e) method bRemove_Click (line 198) | private void bRemove_Click(object sender, System.EventArgs e) method lbImages_SelectedIndexChanged (line 212) | private void lbImages_SelectedIndexChanged(object sender, System.Event... method GetImage (line 227) | private Image GetImage(string imdata) method GetBase64Image (line 250) | private string GetBase64Image(Image img) method tbEIName_TextChanged (line 270) | private void tbEIName_TextChanged(object sender, System.EventArgs e) method bOK_Click (line 293) | private void bOK_Click(object sender, System.EventArgs e) method tbEIName_Validating (line 326) | private void tbEIName_Validating(object sender, System.ComponentModel.... class EmbeddedImageValues (line 337) | class EmbeddedImageValues method EmbeddedImageValues (line 343) | public EmbeddedImageValues(string name) method ToString (line 366) | override public string ToString() FILE: RdlDesign/DialogExprEditor.Designer.cs class DialogExprEditor (line 9) | public partial class DialogExprEditor : System.Windows.Forms.Form method InitializeComponent (line 23) | private void InitializeComponent() method Dispose (line 130) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogExprEditor.cs class DialogExprEditor (line 21) | public partial class DialogExprEditor method DialogExprEditor (line 48) | internal DialogExprEditor(DesignXmlDraw dxDraw, string expr, XmlNode n... method DialogExprEditor (line 53) | internal DialogExprEditor(DesignXmlDraw dxDraw, string expr, XmlNode n... method FillLexerByFields (line 91) | void FillLexerByFields(DesignXmlDraw dxDraw) method BuildTree (line 103) | void BuildTree(string[] flds) method InitTreeNodes (line 135) | void InitTreeNodes(string node, IEnumerable list) method InitUsers (line 150) | void InitUsers() method InitGlobals (line 156) | void InitGlobals() method InitFields (line 162) | void InitFields(string[] flds) method InitFieldsIsMissing (line 171) | void InitFieldsIsMissing(string[] flds) method InitAggrFunctions (line 181) | void InitAggrFunctions() method InitOperators (line 186) | void InitOperators() method InitColors (line 191) | void InitColors() method InitReportParameters (line 201) | void InitReportParameters() method InitReportModulesAndClass (line 218) | void InitReportModulesAndClass() method InitFunctions (line 257) | void InitFunctions() method RemoveDuplicates (line 297) | List RemoveDuplicates(IEnumerable ar) method GroupMethods (line 312) | List GroupMethods(List ar) method InitFunctions (line 359) | void InitFunctions(TreeNode ndRoot) method BuildMethods (line 402) | void BuildMethods(List ar, Type ft, string prefix) method BuildMethodName (line 416) | string BuildMethodName(MethodInfo mi) method IsBaseType (line 437) | bool IsBaseType(Type t) method bCopy_Click (line 453) | private void bCopy_Click(object sender, System.EventArgs e) method tvOp_DoubleClick (line 474) | private void tvOp_DoubleClick(object sender, EventArgs e) method bOK_Click (line 479) | private void bOK_Click(object sender, EventArgs e) FILE: RdlDesign/DialogFilterOperator.Designer.cs class DialogFilterOperator (line 9) | public partial class DialogFilterOperator : System.Windows.Forms.Form method InitializeComponent (line 18) | private void InitializeComponent() method Dispose (line 87) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogFilterOperator.cs class DialogFilterOperator (line 18) | public partial class DialogFilterOperator method DialogFilterOperator (line 21) | internal DialogFilterOperator(string op) method DialogFilterOperator_Validating (line 39) | private void DialogFilterOperator_Validating(object sender, System.Com... FILE: RdlDesign/DialogListOfStrings.Designer.cs class DialogListOfStrings (line 9) | public partial class DialogListOfStrings : System.Windows.Forms.Form method InitializeComponent (line 18) | private void InitializeComponent() method Dispose (line 69) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogListOfStrings.cs class DialogListOfStrings (line 14) | public partial class DialogListOfStrings method DialogListOfStrings (line 16) | public DialogListOfStrings(List list) method lnk_LinkClicked (line 54) | private void lnk_LinkClicked(object sender, LinkLabelLinkClickedEventA... FILE: RdlDesign/DialogNewChart.Designer.cs class DialogNewChart (line 9) | internal partial class DialogNewChart : System.Windows.Forms.Form method InitializeComponent (line 43) | private void InitializeComponent() method Dispose (line 291) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogNewChart.cs class DialogNewChart (line 17) | internal partial class DialogNewChart method DialogNewChart (line 20) | internal DialogNewChart(DesignXmlDraw dxDraw, XmlNode container) method InitValues (line 31) | private void InitValues(XmlNode container) method bOK_Click (line 265) | private void bOK_Click(object sender, System.EventArgs e) method cbDataSets_SelectedIndexChanged (line 291) | private void cbDataSets_SelectedIndexChanged(object sender, System.Eve... method bCategory_Click (line 302) | private void bCategory_Click(object sender, System.EventArgs e) method bSeries_Click (line 315) | private void bSeries_Click(object sender, System.EventArgs e) method bCategoryUp_Click (line 328) | private void bCategoryUp_Click(object sender, System.EventArgs e) method bCategoryDown_Click (line 339) | private void bCategoryDown_Click(object sender, System.EventArgs e) method bCategoryDelete_Click (line 350) | private void bCategoryDelete_Click(object sender, System.EventArgs e) method bSeriesUp_Click (line 360) | private void bSeriesUp_Click(object sender, System.EventArgs e) method bSeriesDown_Click (line 371) | private void bSeriesDown_Click(object sender, System.EventArgs e) method bSeriesDelete_Click (line 382) | private void bSeriesDelete_Click(object sender, System.EventArgs e) method OkEnable (line 392) | private void OkEnable() method cbChartData_Enter (line 409) | private void cbChartData_Enter(object sender, System.EventArgs e) method cbChartData_TextChanged (line 425) | private void cbChartData_TextChanged(object sender, System.EventArgs e) method cbChartType_SelectedIndexChanged (line 430) | private void cbChartType_SelectedIndexChanged(object sender, System.Ev... FILE: RdlDesign/DialogNewMatrix.Designer.cs class DialogNewMatrix (line 9) | internal partial class DialogNewMatrix : System.Windows.Forms.Form method InitializeComponent (line 35) | private void InitializeComponent() method Dispose (line 211) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogNewMatrix.cs class DialogNewMatrix (line 16) | internal partial class DialogNewMatrix method DialogNewMatrix (line 18) | internal DialogNewMatrix(DesignXmlDraw dxDraw, XmlNode container) method InitValues (line 29) | private void InitValues(XmlNode container) method bOK_Click (line 135) | private void bOK_Click(object sender, System.EventArgs e) method cbDataSets_SelectedIndexChanged (line 141) | private void cbDataSets_SelectedIndexChanged(object sender, System.Eve... method bColumn_Click (line 152) | private void bColumn_Click(object sender, System.EventArgs e) method bRow_Click (line 165) | private void bRow_Click(object sender, System.EventArgs e) method bColumnUp_Click (line 178) | private void bColumnUp_Click(object sender, System.EventArgs e) method bColumnDown_Click (line 189) | private void bColumnDown_Click(object sender, System.EventArgs e) method bColumnDelete_Click (line 200) | private void bColumnDelete_Click(object sender, System.EventArgs e) method bRowUp_Click (line 210) | private void bRowUp_Click(object sender, System.EventArgs e) method bRowDown_Click (line 221) | private void bRowDown_Click(object sender, System.EventArgs e) method bRowDelete_Click (line 232) | private void bRowDelete_Click(object sender, System.EventArgs e) method OkEnable (line 242) | private void OkEnable() method cbMatrixCell_Enter (line 253) | private void cbMatrixCell_Enter(object sender, System.EventArgs e) method cbMatrixCell_TextChanged (line 266) | private void cbMatrixCell_TextChanged(object sender, System.EventArgs e) FILE: RdlDesign/DialogNewTable.Designer.cs class DialogNewTable (line 9) | internal partial class DialogNewTable : System.Windows.Forms.Form method InitializeComponent (line 36) | private void InitializeComponent() method Dispose (line 221) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogNewTable.cs class DialogNewTable (line 17) | internal partial class DialogNewTable method DialogNewTable (line 19) | public DialogNewTable(DesignXmlDraw dxDraw, XmlNode container) method InitValues (line 30) | private void InitValues(XmlNode container) method Apply (line 241) | public void Apply() method bOK_Click (line 246) | private void bOK_Click(object sender, System.EventArgs e) method cbDataSets_SelectedIndexChanged (line 253) | private void cbDataSets_SelectedIndexChanged(object sender, System.Eve... method bRight_Click (line 263) | private void bRight_Click(object sender, System.EventArgs e) method bLeft_Click (line 284) | private void bLeft_Click(object sender, System.EventArgs e) method bAllRight_Click (line 307) | private void bAllRight_Click(object sender, System.EventArgs e) method bAllLeft_Click (line 317) | private void bAllLeft_Click(object sender, System.EventArgs e) method bUp_Click (line 328) | private void bUp_Click(object sender, System.EventArgs e) method bDown_Click (line 339) | private void bDown_Click(object sender, System.EventArgs e) method cbGroupColumn_Enter (line 350) | private void cbGroupColumn_Enter(object sender, System.EventArgs e) method rbHorz_CheckedChanged (line 362) | private void rbHorz_CheckedChanged(object sender, System.EventArgs e) FILE: RdlDesign/DialogToolOptions.Designer.cs class DialogToolOptions (line 9) | public partial class DialogToolOptions : System.Windows.Forms.Form method InitializeComponent (line 59) | private void InitializeComponent() method Dispose (line 505) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogToolOptions.cs class DialogToolOptions (line 18) | public partial class DialogToolOptions method DialogToolOptions (line 36) | public DialogToolOptions(RdlDesigner rdl) method Init (line 48) | private void Init() method InitLanguages (line 98) | private void InitLanguages() method InitDesktop (line 108) | private void InitDesktop() method InitMaps (line 181) | private void InitMaps() method InitOperations (line 187) | private void InitOperations() method Verify (line 202) | private bool Verify() method bOK_Click (line 216) | private void bOK_Click(object sender, System.EventArgs e) method DoApply (line 225) | private bool DoApply() method HandleProperties (line 258) | private void HandleProperties() method HandleDesktop (line 273) | private void HandleDesktop() method HandleMaps (line 332) | private void HandleMaps() method HandleRecentFilesMax (line 342) | private void HandleRecentFilesMax() method HandleToolbar (line 366) | private void HandleToolbar() method HandleShows (line 374) | private void HandleShows() method bCopyItem_Click (line 390) | private void bCopyItem_Click(object sender, System.EventArgs e) method bRemove_Click (line 403) | private void bRemove_Click(object sender, System.EventArgs e) method bUp_Click (line 418) | private void bUp_Click(object sender, System.EventArgs e) method bDown_Click (line 427) | private void bDown_Click(object sender, System.EventArgs e) method Swap (line 441) | private void Swap(int i1, int i2) method bReset_Click (line 457) | private void bReset_Click(object sender, System.EventArgs e) method bApply_Click (line 469) | private void bApply_Click(object sender, System.EventArgs e) method Desktop_Changed (line 474) | private void Desktop_Changed(object sender, System.EventArgs e) method bBrowse_Click (line 479) | private void bBrowse_Click(object sender, System.EventArgs e) method cbTabInterface_CheckedChanged (line 551) | private void cbTabInterface_CheckedChanged(object sender, EventArgs e) method bAddMap_Click (line 556) | private void bAddMap_Click(object sender, EventArgs e) method bRemoveMap_Click (line 586) | private void bRemoveMap_Click(object sender, EventArgs e) method GetAvailableCultures (line 595) | private static IEnumerable GetAvailableCultures() method RadioButtonInches_CheckedChanged (line 647) | private void RadioButtonInches_CheckedChanged(object sender, EventArgs e) method RadioButtonCm_CheckedChanged (line 652) | private void RadioButtonCm_CheckedChanged(object sender, EventArgs e) class DesktopConfig (line 660) | public class DesktopConfig FILE: RdlDesign/DialogValidValues.Designer.cs class DialogValidValues (line 9) | internal partial class DialogValidValues : System.Windows.Forms.Form method InitializeComponent (line 18) | private void InitializeComponent() method Dispose (line 73) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogValidValues.cs class DialogValidValues (line 19) | internal partial class DialogValidValues method DialogValidValues (line 23) | internal DialogValidValues(List list) method InitValues (line 61) | private void InitValues(List list) method bDelete_Click (line 87) | private void bDelete_Click(object sender, System.EventArgs e) FILE: RdlDesign/DialogValidateRdl.Designer.cs class DialogValidateRdl (line 9) | public partial class DialogValidateRdl : System.Windows.Forms.Form method InitializeComponent (line 19) | private void InitializeComponent() method Dispose (line 73) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DialogValidateRdl.cs class DialogValidateRdl (line 16) | public partial class DialogValidateRdl method DialogValidateRdl (line 27) | public DialogValidateRdl(RdlDesigner designer) method bValidate_Click (line 39) | private void bValidate_Click(object sender, System.EventArgs e) method ValidationHandler (line 106) | public void ValidationHandler(object sender, ValidationEventArgs args) method lbSchemaErrors_DoubleClick (line 117) | private void lbSchemaErrors_DoubleClick(object sender, System.EventArg... method bClose_Click (line 149) | private void bClose_Click(object sender, System.EventArgs e) method DialogValidateRdl_Closing (line 154) | private void DialogValidateRdl_Closing(object sender, System.Component... FILE: RdlDesign/DrillParametersDialog.Designer.cs class DrillParametersDialog (line 9) | internal partial class DrillParametersDialog : System.Windows.Forms.Form method InitializeComponent (line 21) | private void InitializeComponent() method Dispose (line 102) | protected override void Dispose( bool disposing ) FILE: RdlDesign/DrillParametersDialog.cs class DrillParametersDialog (line 21) | internal partial class DrillParametersDialog method DrillParametersDialog (line 26) | internal DrillParametersDialog(string report, List par... method InitValues (line 37) | private void InitValues(List parameters) method bFile_Click (line 100) | private void bFile_Click(object sender, System.EventArgs e) method bRefreshParms_Click (line 125) | private async void bRefreshParms_Click(object sender, System.EventArgs e) method GetFileNameWithPath (line 167) | private string GetFileNameWithPath(string file) method GetSource (line 173) | private string GetSource(string file) method GetReport (line 196) | private async Task GetReport(string prog, string file) method DrillParametersDialog_Validating (line 226) | private void DrillParametersDialog_Validating(object sender, System.Co... method bOK_Click (line 248) | private void bOK_Click(object sender, System.EventArgs e) class DrillParameter (line 261) | internal class DrillParameter method DrillParameter (line 267) | internal DrillParameter(string name, string pvalue, string omit) FILE: RdlDesign/FiltersCtl.cs class FiltersCtl (line 16) | internal class FiltersCtl : System.Windows.Forms.UserControl, IProperty method FiltersCtl (line 34) | internal FiltersCtl(DesignXmlDraw dxDraw, XmlNode filterParent) method InitValues (line 45) | private void InitValues() method Dispose (line 119) | protected override void Dispose( bool disposing ) method InitializeComponent (line 136) | private void InitializeComponent() method IsValid (line 192) | public bool IsValid() method Apply (line 197) | public void Apply() method bDelete_Click (line 239) | private void bDelete_Click(object sender, System.EventArgs e) method bUp_Click (line 255) | private void bUp_Click(object sender, System.EventArgs e) method bDown_Click (line 267) | private void bDown_Click(object sender, System.EventArgs e) method SwapRow (line 280) | private void SwapRow(DataGridViewRow tdr, DataGridViewRow fdr) method bValueExpr_Click (line 297) | private void bValueExpr_Click(object sender, System.EventArgs e) FILE: RdlDesign/FindTab.Designer.cs class FindTab (line 9) | internal partial class FindTab : System.Windows.Forms.Form method InitializeComponent (line 40) | private void InitializeComponent() method Dispose (line 265) | protected override void Dispose( bool disposing ) FILE: RdlDesign/FindTab.cs class FindTab (line 14) | internal partial class FindTab method FindTab (line 16) | public FindTab() method FindTab (line 28) | internal FindTab(RdlEditPreview pad) method btnNext_Click (line 39) | private void btnNext_Click(object sender, System.EventArgs e) method txtFind_TextChanged (line 44) | private void txtFind_TextChanged(object sender, System.EventArgs e) method btnFindNext_Click (line 52) | private void btnFindNext_Click(object sender, System.EventArgs e) method btnReplace_Click (line 58) | private void btnReplace_Click(object sender, System.EventArgs e) method txtFindR_TextChanged (line 64) | private void txtFindR_TextChanged(object sender, System.EventArgs e) method btnReplaceAll_Click (line 73) | private void btnReplaceAll_Click(object sender, System.EventArgs e) method btnGoto_Click (line 80) | private void btnGoto_Click(object sender, System.EventArgs e) method btnCancel_Click (line 103) | private void btnCancel_Click(object sender, System.EventArgs e) method tcFRG_SelectedIndexChanged (line 108) | private void tcFRG_SelectedIndexChanged(object sender, System.EventArg... method tcFRG_Enter (line 132) | private void tcFRG_Enter(object sender, System.EventArgs e) method FindTab_FormClosed (line 137) | private void FindTab_FormClosed(object sender, FormClosedEventArgs e) method FindNextClick (line 142) | public void FindNextClick() FILE: RdlDesign/FontCtl.cs class FontCtl (line 18) | internal class FontCtl : System.Windows.Forms.UserControl, IProperty method FontCtl (line 66) | public FontCtl(DesignXmlDraw dxDraw, string[] names, List sty... method InitTextStyles (line 78) | private void InitTextStyles() method Dispose (line 172) | protected override void Dispose( bool disposing ) method InitializeComponent (line 189) | private void InitializeComponent() method IsValid (line 560) | public bool IsValid() method Apply (line 579) | public void Apply() method ApplyChanges (line 593) | public void ApplyChanges(XmlNode node) method bFont_Click (line 646) | private void bFont_Click(object sender, System.EventArgs e) method bColor_Click (line 720) | private void bColor_Click(object sender, System.EventArgs e) method cbFontFamily_TextChanged (line 745) | private void cbFontFamily_TextChanged(object sender, System.EventArgs e) method cbFontSize_TextChanged (line 750) | private void cbFontSize_TextChanged(object sender, System.EventArgs e) method cbFontStyle_TextChanged (line 755) | private void cbFontStyle_TextChanged(object sender, System.EventArgs e) method cbFontWeight_TextChanged (line 760) | private void cbFontWeight_TextChanged(object sender, System.EventArgs e) method cbColor_TextChanged (line 765) | private void cbColor_TextChanged(object sender, System.EventArgs e) method cbTextDecoration_TextChanged (line 770) | private void cbTextDecoration_TextChanged(object sender, System.EventA... method cbHorzAlign_TextChanged (line 775) | private void cbHorzAlign_TextChanged(object sender, System.EventArgs e) method cbVerticalAlign_TextChanged (line 780) | private void cbVerticalAlign_TextChanged(object sender, System.EventAr... method cbDirection_TextChanged (line 785) | private void cbDirection_TextChanged(object sender, System.EventArgs e) method cbWritingMode_TextChanged (line 790) | private void cbWritingMode_TextChanged(object sender, System.EventArgs e) method cbFormat_TextChanged (line 795) | private void cbFormat_TextChanged(object sender, System.EventArgs e) method bExpr_Click (line 800) | private void bExpr_Click(object sender, System.EventArgs e) FILE: RdlDesign/GridCtl.cs class GridCtl (line 17) | internal class GridCtl : System.Windows.Forms.UserControl, IProperty method GridCtl (line 37) | public GridCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 48) | private void InitValues() method Dispose (line 80) | protected override void Dispose( bool disposing ) method InitializeComponent (line 97) | private void InitializeComponent() method IsValid (line 188) | public bool IsValid() method Apply (line 198) | public void Apply() method ApplyChanges (line 212) | public void ApplyChanges(XmlNode node) method CreateTableRow (line 235) | private void CreateTableRow(XmlNode tblNode, string elementName, bool ... method chkPBBefore_CheckedChanged (line 252) | private void chkPBBefore_CheckedChanged(object sender, System.EventArg... method chkPBAfter_CheckedChanged (line 257) | private void chkPBAfter_CheckedChanged(object sender, System.EventArgs e) method chkRows_CheckedChanged (line 262) | private void chkRows_CheckedChanged(object sender, System.EventArgs e) FILE: RdlDesign/GroupingCtl.cs class GroupingCtl (line 17) | internal class GroupingCtl : System.Windows.Forms.UserControl, IProperty method GroupingCtl (line 52) | internal GroupingCtl(DesignXmlDraw dxDraw, XmlNode groupingParent) method InitValues (line 63) | private void InitValues() method Dispose (line 163) | protected override void Dispose( bool disposing ) method InitializeComponent (line 180) | private void InitializeComponent() method IsValid (line 371) | public bool IsValid() method HasRows (line 413) | private bool HasRows() method Apply (line 429) | public void Apply() method bDelete_Click (line 540) | private void bDelete_Click(object sender, System.EventArgs e) method bUp_Click (line 554) | private void bUp_Click(object sender, System.EventArgs e) method bDown_Click (line 568) | private void bDown_Click(object sender, System.EventArgs e) method SwapRow (line 583) | private void SwapRow(DataRow tdr, DataRow fdr) method tbName_Validating (line 608) | private void tbName_Validating(object sender, System.ComponentModel.Ca... method bValueExpr_Click (line 623) | private void bValueExpr_Click(object sender, System.EventArgs e) method bExpr_Click (line 657) | private void bExpr_Click(object sender, System.EventArgs e) method BtnCercaFormulaEsclusione_Click (line 690) | private void BtnCercaFormulaEsclusione_Click(object sender, EventArgs e) FILE: RdlDesign/ImageCtl.cs class ImageCtl (line 17) | internal class ImageCtl : System.Windows.Forms.UserControl, IProperty method ImageCtl (line 43) | public ImageCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 54) | private void InitValues() method Dispose (line 91) | protected override void Dispose( bool disposing ) method InitializeComponent (line 108) | private void InitializeComponent() method IsValid (line 268) | public bool IsValid() method Apply (line 273) | public void Apply() method ApplyChanges (line 287) | public void ApplyChanges(XmlNode node) method Value_TextChanged (line 316) | private void Value_TextChanged(object sender, System.EventArgs e) method cbMIMEType_SelectedIndexChanged (line 321) | private void cbMIMEType_SelectedIndexChanged(object sender, System.Eve... method rbSource_CheckedChanged (line 326) | private void rbSource_CheckedChanged(object sender, System.EventArgs e) method cbSizing_SelectedIndexChanged (line 337) | private void cbSizing_SelectedIndexChanged(object sender, System.Event... method bExternal_Click (line 342) | private void bExternal_Click(object sender, System.EventArgs e) method bEmbedded_Click (line 361) | private void bEmbedded_Click(object sender, System.EventArgs e) method bExpr_Click (line 380) | private void bExpr_Click(object sender, System.EventArgs e) FILE: RdlDesign/InteractivityCtl.cs class InteractivityCtl (line 18) | internal class InteractivityCtl : System.Windows.Forms.UserControl, IPro... method InteractivityCtl (line 51) | internal InteractivityCtl(DesignXmlDraw dxDraw, List reportIt... method InitValues (line 62) | private void InitValues(XmlNode node) method Dispose (line 138) | protected override void Dispose( bool disposing ) method InitializeComponent (line 155) | private void InitializeComponent() method IsValid (line 347) | public bool IsValid() method Apply (line 352) | public void Apply() method ApplyChanges (line 366) | private void ApplyChanges(XmlNode rNode) method tbBookmark_TextChanged (line 427) | private void tbBookmark_TextChanged(object sender, System.EventArgs e) method rbAction_CheckedChanged (line 432) | private void rbAction_CheckedChanged(object sender, System.EventArgs e) method tbAction_TextChanged (line 470) | private void tbAction_TextChanged(object sender, System.EventArgs e) method tbHidden_TextChanged (line 475) | private void tbHidden_TextChanged(object sender, System.EventArgs e) method cbToggle_SelectedIndexChanged (line 480) | private void cbToggle_SelectedIndexChanged(object sender, System.Event... method bDrillthrough_Click (line 485) | private void bDrillthrough_Click(object sender, System.EventArgs e) method bParameters_Click (line 510) | private void bParameters_Click(object sender, System.EventArgs e) method bExpr_Click (line 527) | private void bExpr_Click(object sender, System.EventArgs e) FILE: RdlDesign/ListCtl.cs class ListCtl (line 16) | internal class ListCtl : System.Windows.Forms.UserControl, IProperty method ListCtl (line 38) | public ListCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 49) | private void InitValues() method Dispose (line 69) | protected override void Dispose( bool disposing ) method InitializeComponent (line 86) | private void InitializeComponent() method IsValid (line 201) | public bool IsValid() method Apply (line 206) | public void Apply() method ApplyChanges (line 220) | public void ApplyChanges(XmlNode node) method cbDataSet_SelectedIndexChanged (line 241) | private void cbDataSet_SelectedIndexChanged(object sender, System.Even... method chkPBBefore_CheckedChanged (line 246) | private void chkPBBefore_CheckedChanged(object sender, System.EventArg... method chkPBAfter_CheckedChanged (line 251) | private void chkPBAfter_CheckedChanged(object sender, System.EventArgs e) method tbNoRows_TextChanged (line 256) | private void tbNoRows_TextChanged(object sender, System.EventArgs e) method bGroups_Click (line 261) | private void bGroups_Click(object sender, System.EventArgs e) method chkXmlInstances_CheckedChanged (line 278) | private void chkXmlInstances_CheckedChanged(object sender, System.Even... method tbDataInstanceName_TextChanged (line 283) | private void tbDataInstanceName_TextChanged(object sender, System.Even... FILE: RdlDesign/MDIChild.Designer.cs class MDIChild (line 9) | internal partial class MDIChild : Form method InitializeComponent (line 15) | private void InitializeComponent() FILE: RdlDesign/MDIChild.cs class MDIChild (line 23) | internal partial class MDIChild method MDIChild (line 38) | private MDIChild() { } method MDIChild (line 39) | public MDIChild(int width, int height) method ShowEditLines (line 86) | public void ShowEditLines(bool bShow) method ShowPreviewWaitDialog (line 91) | internal void ShowPreviewWaitDialog(bool bShow) method SetFocus (line 143) | internal void SetFocus() method ApplyStyleToSelected (line 168) | public void ApplyStyleToSelected(string name, string v) method FileSave (line 173) | public bool FileSave() method doPossibleEncryption (line 185) | private String doPossibleEncryption(Uri file, String rdl) method FileSave (line 205) | private bool FileSave(Uri file, string rdl) method ExportAsync (line 231) | public async Task ExportAsync(Rdl.OutputPresentationType type) method FileSaveAs (line 312) | public bool FileSaveAs() method GetRdlText (line 345) | public string GetRdlText() method SetSourceFileAsync (line 377) | public async Task SetSourceFileAsync(Uri file) method doPossibleDecryption (line 385) | private String doPossibleDecryption(String rdl) method GetRdlSource (line 412) | private string GetRdlSource() method GetRdlSourceAsync (line 432) | private async Task GetRdlSourceAsync() method Print (line 522) | public void Print(PrintDocument pd) method SaveAs (line 527) | public async Task SaveAs(string filename, OutputPresentationType type) method MDIChild_Closing (line 532) | private void MDIChild_Closing(object sender, System.ComponentModel.Can... method OkToClose (line 549) | public bool OkToClose() method rdlDesigner_RdlChanged (line 572) | private void rdlDesigner_RdlChanged(object sender, System.EventArgs e) method rdlDesigner_HeightChanged (line 577) | private void rdlDesigner_HeightChanged(object sender, HeightEventArgs e) method rdlDesigner_SelectionChanged (line 583) | private void rdlDesigner_SelectionChanged(object sender, System.EventA... method rdlDesigner_DesignTabChanged (line 589) | private void rdlDesigner_DesignTabChanged(object sender, System.EventA... method rdlDesigner_ReportItemInserted (line 595) | private void rdlDesigner_ReportItemInserted(object sender, System.Even... method rdlDesigner_SelectionMoved (line 601) | private void rdlDesigner_SelectionMoved(object sender, System.EventArg... method rdlDesigner_OpenSubreport (line 607) | private void rdlDesigner_OpenSubreport(object sender, SubReportEventAr... method rdlDesigner_SaveRequested (line 615) | private void rdlDesigner_SaveRequested(object sender, System.EventArgs e) method SetTitle (line 622) | private void SetTitle() method MDIChild_Load (line 646) | private void MDIChild_Load(object sender, EventArgs e) FILE: RdlDesign/MatrixCtl.cs class MatrixCtl (line 16) | internal class MatrixCtl : System.Windows.Forms.UserControl, IProperty method MatrixCtl (line 37) | public MatrixCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 48) | private void InitValues() method Dispose (line 68) | protected override void Dispose( bool disposing ) method InitializeComponent (line 85) | private void InitializeComponent() method IsValid (line 192) | public bool IsValid() method Apply (line 197) | public void Apply() method ApplyChanges (line 211) | public void ApplyChanges(XmlNode node) method cbDataSet_SelectedIndexChanged (line 232) | private void cbDataSet_SelectedIndexChanged(object sender, System.Even... method chkPBBefore_CheckedChanged (line 237) | private void chkPBBefore_CheckedChanged(object sender, System.EventArg... method chkPBAfter_CheckedChanged (line 242) | private void chkPBAfter_CheckedChanged(object sender, System.EventArgs e) method tbNoRows_TextChanged (line 247) | private void tbNoRows_TextChanged(object sender, System.EventArgs e) method tbCellDataElementName_TextChanged (line 252) | private void tbCellDataElementName_TextChanged(object sender, System.E... method chkCellContents_CheckedChanged (line 257) | private void chkCellContents_CheckedChanged(object sender, System.Even... FILE: RdlDesign/MatrixView.cs class MatrixView (line 16) | internal class MatrixView method MatrixView (line 29) | public MatrixView(DesignXmlDraw dxDraw, XmlNode matrix) method BuildView (line 78) | void BuildView() method CountRowColumns (line 85) | void CountRowColumns() method FillMatrix (line 103) | void FillMatrix() method FillMatrixHeights (line 120) | void FillMatrixHeights() method FillMatrixWidths (line 139) | void FillMatrixWidths() method FillMatrixCornerHeightWidth (line 158) | void FillMatrixCornerHeightWidth() method FillMatrixCells (line 173) | void FillMatrixCells() method FillMatrixCorner (line 235) | void FillMatrixCorner() method GetMatrixColumnWidth (line 246) | float GetMatrixColumnWidth(int count) method FillMatrixColumnGroupings (line 261) | void FillMatrixColumnGroupings() method GetMatrixRowHeight (line 318) | float GetMatrixRowHeight(int count) method FillMatrixRowGroupings (line 333) | void FillMatrixRowGroupings() method CountMatrixColumns (line 393) | int CountMatrixColumns() method CountMatrixRows (line 421) | int CountMatrixRows() method CountColumnGroupings (line 449) | int CountColumnGroupings() method CountRowGroupings (line 469) | int CountRowGroupings() method CountColumnGroupingSubtotals (line 490) | int CountColumnGroupingSubtotals() method CountRowGroupingSubtotals (line 513) | int CountRowGroupingSubtotals() class MatrixItem (line 534) | class MatrixItem method MatrixItem (line 540) | public MatrixItem(XmlNode ri) FILE: RdlDesign/ModulesClassesCtl.cs class ModulesClassesCtl (line 16) | internal class ModulesClassesCtl : System.Windows.Forms.UserControl, IPr... method ModulesClassesCtl (line 33) | internal ModulesClassesCtl(DesignXmlDraw dxDraw) method InitValues (line 43) | private void InitValues() method BuildCodeModules (line 49) | private void BuildCodeModules() method BuildClasses (line 73) | private void BuildClasses() method Dispose (line 108) | protected override void Dispose( bool disposing ) method InitializeComponent (line 125) | private void InitializeComponent() method IsValid (line 190) | public bool IsValid() method Apply (line 195) | public void Apply() method ApplyCodeModules (line 201) | private void ApplyCodeModules() method ApplyClasses (line 220) | private void ApplyClasses() method HasRows (line 244) | private bool HasRows(DataTable dt, int columns) method bDeleteCM_Click (line 269) | private void bDeleteCM_Click(object sender, System.EventArgs e) method bDeleteClass_Click (line 279) | private void bDeleteClass_Click(object sender, System.EventArgs e) FILE: RdlDesign/PositionCtl.cs class PositionCtl (line 17) | internal class PositionCtl : System.Windows.Forms.UserControl, IProperty method PositionCtl (line 52) | internal PositionCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 63) | private void InitValues() method Dispose (line 130) | protected override void Dispose( bool disposing ) method InitializeComponent (line 147) | private void InitializeComponent() method IsValid (line 387) | public bool IsValid() method Apply (line 433) | public void Apply() method ApplyChanges (line 448) | public void ApplyChanges(XmlNode node) method tbName_TextChanged (line 512) | private void tbName_TextChanged(object sender, System.EventArgs e) method tbLeft_TextChanged (line 517) | private void tbLeft_TextChanged(object sender, System.EventArgs e) method tbTop_TextChanged (line 522) | private void tbTop_TextChanged(object sender, System.EventArgs e) method tbWidth_TextChanged (line 527) | private void tbWidth_TextChanged(object sender, System.EventArgs e) method tbHeight_TextChanged (line 532) | private void tbHeight_TextChanged(object sender, System.EventArgs e) method tbZIndex_ValueChanged (line 537) | private void tbZIndex_ValueChanged(object sender, System.EventArgs e) method tbName_Validating (line 542) | private void tbName_Validating(object sender, System.ComponentModel.Ca... method tbColSpan_ValueChanged (line 555) | private void tbColSpan_ValueChanged(object sender, System.EventArgs e) method cbToggleImage_Changed (line 560) | private void cbToggleImage_Changed(object sender, System.EventArgs e) method cbDataElementStyle_SelectedIndexChanged (line 565) | private void cbDataElementStyle_SelectedIndexChanged(object sender, Sy... method cbHideDuplicates_SelectedIndexChanged (line 570) | private void cbHideDuplicates_SelectedIndexChanged(object sender, Syst... method chkCanShrink_CheckedChanged (line 575) | private void chkCanShrink_CheckedChanged(object sender, System.EventAr... method chkCanGrow_CheckedChanged (line 580) | private void chkCanGrow_CheckedChanged(object sender, System.EventArgs e) FILE: RdlDesign/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlDesign/PropertyCtl.cs class PropertyCtl (line 17) | internal class PropertyCtl : System.Windows.Forms.UserControl method PropertyCtl (line 34) | public PropertyCtl() method Reset (line 41) | internal void Reset() method ResetSelection (line 50) | internal void ResetSelection(DesignXmlDraw d, DesignCtl dc) method SetPropertyNames (line 124) | private void SetPropertyNames() method SingleReportItemType (line 170) | private bool SingleReportItemType() method Dispose (line 188) | protected override void Dispose(bool disposing) method InitializeComponent (line 205) | private void InitializeComponent() method bClose_Click (line 258) | private void bClose_Click(object sender, EventArgs e) method cbReportItems_SelectedIndexChanged (line 273) | private void cbReportItems_SelectedIndexChanged(object sender, EventAr... FILE: RdlDesign/PropertyDialog.Designer.cs class PropertyDialog (line 9) | internal partial class PropertyDialog : System.Windows.Forms.Form method InitializeComponent (line 21) | private void InitializeComponent() method Dispose (line 94) | protected override void Dispose( bool disposing ) FILE: RdlDesign/PropertyDialog.cs type PropertyTypeEnum (line 13) | internal enum PropertyTypeEnum class PropertyDialog (line 33) | internal partial class PropertyDialog method PropertyDialog (line 44) | internal PropertyDialog(DesignXmlDraw dxDraw, List sNodes, Pr... method PropertyDialog (line 47) | internal PropertyDialog(DesignXmlDraw dxDraw, List sNodes, Pr... method BuildReportTabs (line 100) | private void BuildReportTabs() method BuildDataSetsTabs (line 123) | private void BuildDataSetsTabs() method BuildGroupingTabs (line 148) | private void BuildGroupingTabs() method BuildReportItemTabs (line 178) | private void BuildReportItemTabs() method BuildChartAxisTabs (line 344) | private void BuildChartAxisTabs(PropertyTypeEnum type) method BuildChartLegendTabs (line 385) | private void BuildChartLegendTabs() method BuildTitle (line 415) | private void BuildTitle(PropertyTypeEnum type) method EnsureStyle (line 467) | private void EnsureStyle() method AddTab (line 477) | private void AddTab(string name, UserControl uc) method bApply_Click (line 499) | private void bApply_Click(object sender, System.EventArgs e) method bOK_Click (line 512) | private void bOK_Click(object sender, System.EventArgs e) method IsValid (line 521) | private bool IsValid() method PropertyDialog_Closing (line 536) | private void PropertyDialog_Closing(object sender, System.ComponentMod... method bDelete_Click (line 553) | private void bDelete_Click(object sender, System.EventArgs e) type IProperty (line 566) | internal interface IProperty method Apply (line 568) | void Apply(); method IsValid (line 569) | bool IsValid(); FILE: RdlDesign/QueryParametersCtl.Designer.cs class QueryParametersCtl (line 3) | partial class QueryParametersCtl method Dispose (line 13) | protected override void Dispose( bool disposing ) method InitializeComponent (line 30) | private void InitializeComponent() FILE: RdlDesign/QueryParametersCtl.cs class QueryParametersCtl (line 18) | internal partial class QueryParametersCtl : System.Windows.Forms.UserCon... method QueryParametersCtl (line 23) | internal QueryParametersCtl(DesignXmlDraw dxDraw, DataSetValues dsv) method InitValues (line 34) | private void InitValues() method IsValid (line 39) | public bool IsValid() method Apply (line 44) | public void Apply() method bValueExpr_Click (line 49) | private void bValueExpr_Click(object sender, EventArgs e) method bDelete_Click (line 74) | private void bDelete_Click(object sender, EventArgs e) FILE: RdlDesign/RdlDesigner.Designer.cs class RdlDesigner (line 9) | public partial class RdlDesigner : System.Windows.Forms.Form method InitializeComponent (line 16) | private void InitializeComponent() method Dispose (line 6670) | protected override void Dispose( bool disposing ) FILE: RdlDesign/RdlDesigner.cs class RdlDesigner (line 36) | public partial class RdlDesigner : IMessageFilter method RdlDesigner (line 76) | private RdlDesigner() method IsMetric (line 92) | private bool IsMetric() method OpenFileAsync (line 121) | public async Task OpenFileAsync(string filePath) method OpenFileAsync (line 125) | public async Task OpenFileAsync(Uri filePath) method OpenFileAsync (line 136) | public async Task OpenFileAsync(string filePath, string connectionString) method OpenFileAsync (line 140) | public async Task OpenFileAsync(Uri filePath, string connectionString) method RdlDesigner (line 172) | public RdlDesigner(string IpcChannelPortName, bool openPreviousSession) method RdlDesigner_Load (line 178) | private async void RdlDesigner_Load(object sender, EventArgs e) method PreFilterMessage (line 219) | public bool PreFilterMessage(ref Message m) method WindowFromPoint (line 237) | [DllImport("user32.dll")] method SendMessage (line 239) | [DllImport("user32.dll")] method GetPropertiesDockStyle (line 242) | private DockStyle GetPropertiesDockStyle(string l) method InitToolbar (line 257) | private void InitToolbar() method mainTC_MouseClick (line 288) | void mainTC_MouseClick(object sender, MouseEventArgs e) method mainTB_SizeChanged (line 313) | void mainTB_SizeChanged(object sender, EventArgs e) method mainTC_SelectedIndexChanged (line 318) | void mainTC_SelectedIndexChanged(object sender, EventArgs e) method LockWindowUpdate (line 324) | [DllImport("user32.dll")] method mdi_Activate (line 327) | void mdi_Activate(MDIChild mc) method BuildCustomItemsInsertMenu (line 441) | private void BuildCustomItemsInsertMenu(ToolStripDropDownItem menuItem) method fxExpr_MouseLeave (line 612) | void fxExpr_MouseLeave(object sender, EventArgs e) method fxExpr_MouseEnter (line 621) | void fxExpr_MouseEnter(object sender, EventArgs e) method fxExpr_Click (line 632) | void fxExpr_Click(object sender, EventArgs e) method InitToolbarInsertToggle (line 654) | private SimpleToggle InitToolbarInsertToggle(ref int x, int y, string t) method InitToolbarInsertToggle (line 659) | private SimpleToggle InitToolbarInsertToggle(ref int x, int y, string t, method InitToolbarInsertToggle (line 665) | private SimpleToggle InitToolbarInsertToggle(ref int x, int y, string t, method InitToolbarFont (line 707) | private int InitToolbarFont() method InitToolbarFontSize (line 720) | private int InitToolbarFontSize() method tip_Popup_Fore (line 730) | void tip_Popup_Fore(object sender, PopupEventArgs e) method ctlForeColor_Change (line 745) | private void ctlForeColor_Change(object sender, EventArgs e) method tip_Popup_Back (line 759) | void tip_Popup_Back(object sender, PopupEventArgs e) method OkToSave (line 777) | private bool OkToSave() method menuFile_Popup (line 787) | private void menuFile_Popup(object sender, EventArgs e) method menuFileClose_Click (line 802) | private void menuFileClose_Click(object sender, EventArgs e) method menuFileExit_Click (line 809) | private void menuFileExit_Click(object sender, EventArgs e) method menuFileOpen_Click (line 820) | private async void menuFileOpen_Click(object sender, EventArgs e) method CreateMDIChildAsync (line 857) | private async Task CreateMDIChildAsync(Uri file, string rdl,... method DesignTabChanged (line 937) | private void DesignTabChanged(object sender, System.EventArgs e) method ctlUnderline_Click (line 1141) | private void ctlUnderline_Click(object sender, EventArgs e) method ctlFont_Change (line 1153) | private void ctlFont_Change(object sender, EventArgs e) method ctlFontSize_Change (line 1167) | private void ctlFontSize_Change(object sender, EventArgs e) method ctlSelectTool_Click (line 1181) | private void ctlSelectTool_Click(object sender, EventArgs e) method ctlBackColor_Change (line 1192) | private void ctlBackColor_Change(object sender, EventArgs e) method ctlZoom_Change (line 1206) | private void ctlZoom_Change(object sender, EventArgs e) method EnableEditTextBox (line 1240) | private void EnableEditTextBox() method ctlItalic_Click (line 1266) | private void ctlItalic_Click(object sender, EventArgs e) method ReportItemInserted (line 1278) | private void ReportItemInserted(object sender, System.EventArgs e) method OpenSubReportEvent (line 1301) | private async void OpenSubReportEvent(object sender, SubReportEventArg... method HeightChanged (line 1320) | private void HeightChanged(object sender, HeightEventArgs e) method SelectionMoved (line 1342) | private void SelectionMoved(object sender, System.EventArgs e) method SelectionChanged (line 1351) | private void SelectionChanged(object sender, System.EventArgs e) method menuData_Popup (line 1403) | private void menuData_Popup(object sender, EventArgs ea) method dataSourcesToolStripMenuItem1_Click (line 1437) | private void dataSourcesToolStripMenuItem1_Click(object sender, System... method dataSetsToolStripMenuItem_Click (line 1454) | private void dataSetsToolStripMenuItem_Click(object sender, System.Eve... method embeddedImagesToolStripMenuItem_Click (line 1560) | private void embeddedImagesToolStripMenuItem_Click(object sender, Syst... method menuFileNewDataSourceRef_Click (line 1577) | private void menuFileNewDataSourceRef_Click(object sender, System.Even... method menuFileNewReport_Click (line 1588) | private async void menuFileNewReport_Click(object sender, System.Event... method menuFilePrint_Click (line 1609) | private void menuFilePrint_Click(object sender, EventArgs e) method menuFileSave_Click (line 1678) | private void menuFileSave_Click(object sender, EventArgs e) method exportToolStripMenuItemCsv_Click (line 1700) | private async void exportToolStripMenuItemCsv_Click(object sender, Eve... method exportToolStripMenuItemExcel_Click (line 1711) | private async void exportToolStripMenuItemExcel_Click(object sender, E... method exportToolStripMenuItemRtf_Click (line 1722) | private async void exportToolStripMenuItemRtf_Click(object sender, Eve... method exportToolStripMenuItemXml_Click (line 1733) | private async void exportToolStripMenuItemXml_Click(object sender, Eve... method exportToolStripMenuItemHtml_Click (line 1744) | private async void exportToolStripMenuItemHtml_Click(object sender, Ev... method exportToolStripMenuItemMHtml_Click (line 1755) | private async void exportToolStripMenuItemMHtml_Click(object sender, E... method exportToolStripMenuItemPdf_Click (line 1766) | private async void exportToolStripMenuItemPdf_Click(object sender, Eve... method PdfExportAsync (line 1771) | private async Task PdfExportAsync(bool oldStyle) method exportToolStripMenuItemTif_Click (line 1789) | private async void exportToolStripMenuItemTif_Click(object sender, Eve... method menuFileSaveAs_Click (line 1800) | private void menuFileSaveAs_Click(object sender, EventArgs e) method menuEdit_Popup (line 1827) | private void menuEdit_Popup(object sender, EventArgs ea) method menuEditUndo_Click (line 1909) | private void menuEditUndo_Click(object sender, System.EventArgs ea) method menuEditRedo_Click (line 1934) | private void menuEditRedo_Click(object sender, System.EventArgs ea) method menuEditCut_Click (line 1946) | private void menuEditCut_Click(object sender, System.EventArgs ea) method menuEditCopy_Click (line 1962) | private void menuEditCopy_Click(object sender, System.EventArgs ea) method menuEditPaste_Click (line 1981) | private void menuEditPaste_Click(object sender, System.EventArgs ea) method menuEditDelete_Click (line 1998) | private void menuEditDelete_Click(object sender, System.EventArgs ea) method menuEditProperties_Click (line 2008) | private void menuEditProperties_Click(object sender, System.EventArgs ea) method ShowProperties (line 2018) | internal void ShowProperties(bool bShow) method menuEditSelectAll_Click (line 2033) | private void menuEditSelectAll_Click(object sender, System.EventArgs ea) method menuEditFind_Click (line 2047) | private async void menuEditFind_Click(object sender, System.EventArgs ea) method menuEditFindNext_Click (line 2071) | private void menuEditFindNext_Click(object sender, System.EventArgs ea) method menuEdit_FormatXml (line 2086) | private void menuEdit_FormatXml(object sender, System.EventArgs ea) method menuEditReplace_Click (line 2105) | private void menuEditReplace_Click(object sender, System.EventArgs ea) method menuEditGoto_Click (line 2120) | private void menuEditGoto_Click(object sender, System.EventArgs ea) method menuHelpAbout_Click (line 2135) | private void menuHelpAbout_Click(object sender, System.EventArgs ea) method menuHelpHelp_Click (line 2143) | private void menuHelpHelp_Click(object sender, System.EventArgs ea) method menuHelpSupport_Click (line 2156) | private void menuHelpSupport_Click(object sender, System.EventArgs ea) method GetEditor (line 2178) | internal RdlEditPreview GetEditor() method menuTools_Popup (line 2186) | private void menuTools_Popup(object sender, EventArgs e) method menuToolsProcess_Click (line 2196) | private void menuToolsProcess_Click(object sender, EventArgs e) method menuToolsStartProcess (line 2204) | internal void menuToolsStartProcess(bool bMsg) method menuToolsCloseProcess (line 2234) | internal void menuToolsCloseProcess(bool bMsg) method menuToolsOptions_Click (line 2253) | private void menuToolsOptions_Click(object sender, EventArgs e) method menuToolsValidateSchema_Click (line 2275) | private void menuToolsValidateSchema_Click(object sender, EventArgs e) method ValidateSchemaClosing (line 2287) | internal void ValidateSchemaClosing() method menuWnd_Popup (line 2292) | private void menuWnd_Popup(object sender, EventArgs e) method menuWndCascade_Click (line 2302) | private void menuWndCascade_Click(object sender, EventArgs e) method menuWndCloseAll_Click (line 2307) | private void menuWndCloseAll_Click(object sender, EventArgs e) method menuWndCloseAllButCurrent_Click (line 2315) | private void menuWndCloseAllButCurrent_Click(object sender, EventArgs e) method menuWndTileH_Click (line 2327) | private void menuWndTileH_Click(object sender, EventArgs e) method menuWndTileV_Click (line 2332) | private void menuWndTileV_Click(object sender, EventArgs e) method menuRecentItem_Click (line 2337) | private async void menuRecentItem_Click(object sender, System.EventArg... method RdlDesigner_Closing (line 2347) | private void RdlDesigner_Closing(object sender, System.ComponentModel.... method NoteRecentFiles (line 2354) | private void NoteRecentFiles(Uri name, bool bResetMenu) method RecentFilesMenu (line 2378) | internal void RecentFilesMenu() method ResetPassword (line 2392) | internal void ResetPassword() method GetPassword (line 2398) | internal string GetPassword() method GetStartupStateAsync (line 2414) | private async Task GetStartupStateAsync() method SaveStartupState (line 2548) | private void SaveStartupState() method GetCustomColors (line 2697) | static internal int[] GetCustomColors() method SetCustomColors (line 2737) | static internal void SetCustomColors(int[] colors) method EditTextbox_Validated (line 2784) | private void EditTextbox_Validated(object sender, EventArgs e) method InsertToolStripMenuItem_Click (line 2796) | private void InsertToolStripMenuItem_Click(object sender, EventArgs e) method Insert_Click (line 2813) | private void Insert_Click(object sender, EventArgs e) method boldToolStripButton1_Click (line 2829) | private void boldToolStripButton1_Click(object sender, EventArgs e) method italiacToolStripButton1_Click (line 2841) | private void italiacToolStripButton1_Click(object sender, EventArgs e) method underlineToolStripButton2_Click (line 2853) | private void underlineToolStripButton2_Click(object sender, EventArgs e) method foreColorPicker1_Change (line 2865) | private void foreColorPicker1_Change(object sender, EventArgs e) method backColorPicker1_Change (line 2879) | private void backColorPicker1_Change(object sender, EventArgs e) method fontToolStripComboBox1_Change (line 2893) | private void fontToolStripComboBox1_Change(object sender, EventArgs e) method fontSizeToolStripComboBox1_Change (line 2907) | private void fontSizeToolStripComboBox1_Change(object sender, EventArg... method selectToolStripButton2_Click (line 2921) | private void selectToolStripButton2_Click(object sender, EventArgs e) method zoomToolStripComboBox1_Change (line 2932) | private void zoomToolStripComboBox1_Change(object sender, EventArgs e) method RdlDesigner_MdiChildActivate (line 2966) | private void RdlDesigner_MdiChildActivate(object sender, EventArgs e) method SetMDIChildFocus (line 2981) | private void SetMDIChildFocus(MDIChild mc) method SetProperties (line 2990) | private void SetProperties(MDIChild mc) method SetStatusNameAndPosition (line 2998) | private void SetStatusNameAndPosition() method SetStatusNameAndPositionDesign (line 3019) | private void SetStatusNameAndPositionDesign(MDIChild mc) method SetStatusNameAndPositionEdit (line 3078) | private void SetStatusNameAndPositionEdit(MDIChild mc) method EditTextBox_KeyDown (line 3085) | private void EditTextBox_KeyDown(object sender, KeyEventArgs e) method menuFormat_Popup (line 3121) | private void menuFormat_Popup(object sender, EventArgs e) method bottomsToolStripMenuItemutton_Click (line 3178) | private void bottomsToolStripMenuItemutton_Click(object sender, System... method centersToolStripMenuItem_Click (line 3212) | private void centersToolStripMenuItem_Click(object sender, System.Even... method leftsToolStripMenuItem_Click (line 3222) | private void leftsToolStripMenuItem_Click(object sender, System.EventA... method rightsToolStripMenuItem_Click (line 3232) | private void rightsToolStripMenuItem_Click(object sender, System.Event... method bottomsToolStripMenuItem_Click (line 3242) | private void bottomsToolStripMenuItem_Click(object sender, System.Even... method topsToolStripMenuItem_Click (line 3252) | private void topsToolStripMenuItem_Click(object sender, System.EventAr... method middlesToolStripMenuItem_Click (line 3262) | private void middlesToolStripMenuItem_Click(object sender, System.Even... method heightToolStripMenuItem_Click (line 3272) | private void heightToolStripMenuItem_Click(object sender, System.Event... method widthToolStripMenuItem_Click (line 3282) | private void widthToolStripMenuItem_Click(object sender, System.EventA... method bothToolStripMenuItem_Click (line 3292) | private void bothToolStripMenuItem_Click(object sender, System.EventAr... method makeEqualToolStripMenuItem_Click (line 3302) | private void makeEqualToolStripMenuItem_Click(object sender, System.Ev... method increaseToolStripMenuItem_Click (line 3312) | private void increaseToolStripMenuItem_Click(object sender, System.Eve... method decreaseToolStripMenuItem_Click (line 3322) | private void decreaseToolStripMenuItem_Click(object sender, System.Eve... method zeroToolStripMenuItem_Click (line 3332) | private void zeroToolStripMenuItem_Click(object sender, System.EventAr... method makeEqualToolStripMenuItem1_Click (line 3342) | private void makeEqualToolStripMenuItem1_Click(object sender, System.E... method increaseToolStripMenuItem1_Click (line 3352) | private void increaseToolStripMenuItem1_Click(object sender, System.Ev... method decreaseToolStripMenuItem1_Click (line 3362) | private void decreaseToolStripMenuItem1_Click(object sender, System.Ev... method zeroToolStripMenuItem1_Click (line 3372) | private void zeroToolStripMenuItem1_Click(object sender, System.EventA... method menuView_Popup (line 3382) | private void menuView_Popup(object sender, EventArgs e) method menuViewDesigner_Click (line 3393) | private void menuViewDesigner_Click(object sender, System.EventArgs e) method menuViewRDL_Click (line 3401) | private void menuViewRDL_Click(object sender, System.EventArgs e) method menuViewBrowser_Click (line 3409) | private void menuViewBrowser_Click(object sender, System.EventArgs e) method menuViewPreview_Click (line 3460) | private void menuViewPreview_Click(object sender, System.EventArgs e) method menuFormatPadding_Click (line 3468) | private void menuFormatPadding_Click(object sender, System.EventArgs e) method CleanupTempFiles (line 3547) | private void CleanupTempFiles() method menuFormatAlignButton_Click (line 3565) | private void menuFormatAlignButton_Click(object sender, System.EventAr... method menuFormatAlignC_Click (line 3599) | private void menuFormatAlignC_Click(object sender, System.EventArgs e) method menuFormatAlignL_Click (line 3609) | private void menuFormatAlignL_Click(object sender, System.EventArgs e) method menuFormatAlignR_Click (line 3619) | private void menuFormatAlignR_Click(object sender, System.EventArgs e) method menuFormatAlignB_Click (line 3629) | private void menuFormatAlignB_Click(object sender, System.EventArgs e) method menuFormatAlignT_Click (line 3639) | private void menuFormatAlignT_Click(object sender, System.EventArgs e) method menuFormatAlignM_Click (line 3649) | private void menuFormatAlignM_Click(object sender, System.EventArgs e) method menuFormatSizeH_Click (line 3659) | private void menuFormatSizeH_Click(object sender, System.EventArgs e) method menuFormatSizeW_Click (line 3669) | private void menuFormatSizeW_Click(object sender, System.EventArgs e) method menuFormatSizeB_Click (line 3679) | private void menuFormatSizeB_Click(object sender, System.EventArgs e) method menuFormatHorzE_Click (line 3689) | private void menuFormatHorzE_Click(object sender, System.EventArgs e) method menuFormatHorzI_Click (line 3699) | private void menuFormatHorzI_Click(object sender, System.EventArgs e) method menuFormatHorzD_Click (line 3709) | private void menuFormatHorzD_Click(object sender, System.EventArgs e) method menuFormatHorzZ_Click (line 3719) | private void menuFormatHorzZ_Click(object sender, System.EventArgs e) method menuFormatVertE_Click (line 3729) | private void menuFormatVertE_Click(object sender, System.EventArgs e) method menuFormatVertI_Click (line 3739) | private void menuFormatVertI_Click(object sender, System.EventArgs e) method menuFormatVertD_Click (line 3749) | private void menuFormatVertD_Click(object sender, System.EventArgs e) method menuFormatVertZ_Click (line 3759) | private void menuFormatVertZ_Click(object sender, System.EventArgs e) method RdlDesigner_DragDrop (line 3769) | private async void RdlDesigner_DragDrop(object sender, DragEventArgs e) method RdlDesigner_DragEnter (line 3789) | private void RdlDesigner_DragEnter(object sender, DragEventArgs e) method pDFToolStripMenuItem_Click (line 3801) | private async void pDFToolStripMenuItem_Click(object sender, EventArgs e) method pDFOldStyleToolStripMenuItem_Click (line 3806) | private async void pDFOldStyleToolStripMenuItem_Click(object sender, E... method tIFFToolStripMenuItem_Click (line 3811) | private void tIFFToolStripMenuItem_Click(object sender, EventArgs e) method excelToolStripMenuItem_Click (line 3816) | private void excelToolStripMenuItem_Click(object sender, EventArgs e) method xMLToolStripMenuItem_Click (line 3821) | private void xMLToolStripMenuItem_Click(object sender, EventArgs e) method webArchiveSingleFileMHTToolStripMenuItem_Click (line 3826) | private void webArchiveSingleFileMHTToolStripMenuItem_Click(object sen... method webPageHTMLToolStripMenuItem_Click (line 3831) | private void webPageHTMLToolStripMenuItem_Click(object sender, EventAr... method cSVToolStripMenuItem_Click (line 3836) | private void cSVToolStripMenuItem_Click(object sender, EventArgs e) method rTFDOCToolStripMenuItem_Click (line 3841) | private void rTFDOCToolStripMenuItem_Click(object sender, EventArgs e) method dOCToolStripMenuItem_Click (line 3846) | private async void dOCToolStripMenuItem_Click(object sender, EventArgs e) method Excel2007ToolStripMenuItem_Click (line 3856) | private async void Excel2007ToolStripMenuItem_Click(object sender, Eve... method ExitToolStripMenuItem_Click (line 3867) | private void ExitToolStripMenuItem_Click(object sender, EventArgs e) method ZoomControl1_ValueChanged (line 3872) | private void ZoomControl1_ValueChanged(object sender, UserZoomControl.... method AlignmentGridEnable_CheckStateChanged (line 3911) | private void AlignmentGridEnable_CheckStateChanged(object sender, Even... method CenterHorizontallyToolStripMenuItem_Click (line 3929) | private void CenterHorizontallyToolStripMenuItem_Click(object sender, ... method CenterVerticallyToolStripMenuItem_Click (line 3939) | private void CenterVerticallyToolStripMenuItem_Click(object sender, Ev... method CenterBothToolStripMenu_Click (line 3949) | private void CenterBothToolStripMenu_Click(object sender, EventArgs e) method ShowSaveInProgressAsync (line 3959) | private async Task ShowSaveInProgressAsync(string fileName, class RdlIpcObject (line 3979) | public class RdlIpcObject : MarshalByRefObject method RdlIpcObject (line 3981) | public RdlIpcObject() method getCommands (line 3993) | public List getCommands() method setCommands (line 3998) | public void setCommands(List value) method InitializeLifetimeService (line 4003) | [Obsolete] type NewLineChar (line 4011) | public enum NewLineChar FILE: RdlDesign/RdlDesignerSavedFileEvent.cs class RdlDesignerSavedFileEvent (line 9) | public class RdlDesignerSavedFileEvent : System.EventArgs method RdlDesignerSavedFileEvent (line 13) | public RdlDesignerSavedFileEvent(Uri filePath) FILE: RdlDesign/RdlEditPreview.cs class RdlEditPreview (line 20) | internal class RdlEditPreview : System.Windows.Forms.UserControl method RdlEditPreview (line 59) | public RdlEditPreview() method scintilla1_KeyDown (line 113) | void scintilla1_KeyDown(object sender, KeyEventArgs e) method scintilla1_TextChanged (line 122) | void scintilla1_TextChanged(object sender, EventArgs e) method SetFocus (line 164) | internal void SetFocus() method ShowEditLines (line 180) | internal void ShowEditLines(bool bShow) method ShowPreviewWaitDialog (line 185) | internal void ShowPreviewWaitDialog(bool bShow) method ApplyStyleToSelected (line 242) | public void ApplyStyleToSelected(string name, string v) method SetSelectedText (line 248) | public void SetSelectedText(string v) method StartUndoGroup (line 288) | public void StartUndoGroup(string description) method EndUndoGroup (line 294) | public void EndUndoGroup(bool keepChanges) method CleanUp (line 376) | public void CleanUp() method ClearUndo (line 380) | public void ClearUndo() method Undo (line 395) | public void Undo() method Redo (line 410) | public void Redo() method Cut (line 425) | public void Cut() method Copy (line 440) | public void Copy() method Clear (line 458) | public void Clear() method Paste (line 473) | public void Paste() method SelectAll (line 488) | public void SelectAll() method FindNext (line 569) | public void FindNext(Control ctl, string str, bool matchCase, bool rev... method HighlightWord (line 600) | private void HighlightWord(string text) method ClearSearchHighlight (line 627) | public void ClearSearchHighlight() method ReplaceNext (line 634) | public void ReplaceNext(Control ctl, string str, string strReplace, bo... method ReplaceAll (line 651) | public void ReplaceAll(Control ctl, string str, string strReplace, boo... method Goto (line 669) | public void Goto(Control ctl, int nLine) method Dispose (line 684) | protected override void Dispose( bool disposing ) method InitializeComponent (line 701) | private void InitializeComponent() method dcDesign_ReportChanged (line 793) | private void dcDesign_ReportChanged(object sender, System.EventArgs e) method SetTextToScintilla (line 805) | private void SetTextToScintilla(string text) method dcDesign_HeightChanged (line 818) | private void dcDesign_HeightChanged(object sender, HeightEventArgs e) method dcDesign_ReportItemInserted (line 826) | private void dcDesign_ReportItemInserted(object sender, System.EventAr... method dcDesign_OpenSubreport (line 834) | private void dcDesign_OpenSubreport(object sender, SubReportEventArgs e) method dcDesign_SelectionChanged (line 842) | private void dcDesign_SelectionChanged(object sender, System.EventArgs e) method dcDesign_SelectionMoved (line 850) | private void dcDesign_SelectionMoved(object sender, System.EventArgs e) method tcEHP_SelectedIndexChanged (line 858) | private async void tcEHP_SelectedIndexChanged(object sender, System.Ev... method Print (line 906) | public async void Print(PrintDocument pd) method SaveAs (line 911) | public async Task SaveAs(string filename, OutputPresentationType type) method GetRdlText (line 916) | public string GetRdlText() method SetRdlText (line 924) | public void SetRdlText(string text) method scintilla1_UpdateUI (line 985) | private void scintilla1_UpdateUI(object sender, UpdateUIEventArgs e) type DesignTabs (line 997) | public enum DesignTabs FILE: RdlDesign/RdlProperties/Categories.Designer.cs class Categories (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Categories (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlDesign/RdlProperties/Descriptions.Designer.cs class Descriptions (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Descriptions (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlDesign/RdlProperties/DisplayNames.Designer.cs class DisplayNames (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method DisplayNames (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlDesign/RdlProperties/LocalizedCategoryAttribute.cs class LocalizedCategoryAttribute (line 7) | internal class LocalizedCategoryAttribute : CategoryAttribute method LocalizedCategoryAttribute (line 9) | public LocalizedCategoryAttribute(string category) method GetLocalizedString (line 14) | protected override string GetLocalizedString(string value) FILE: RdlDesign/RdlProperties/LocalizedDescriptionAttribute.cs class LocalizedDescriptionAttribute (line 6) | public class LocalizedDescriptionAttribute : DescriptionAttribute method LocalizedDescriptionAttribute (line 8) | public LocalizedDescriptionAttribute(string description) FILE: RdlDesign/RdlProperties/LocalizedDisplayNameAttribute.cs class LocalizedDisplayNameAttribute (line 6) | internal class LocalizedDisplayNameAttribute : DisplayNameAttribute method LocalizedDisplayNameAttribute (line 8) | public LocalizedDisplayNameAttribute(string displayName) FILE: RdlDesign/RdlProperties/PropertyAction.cs class PropertyAction (line 18) | [TypeConverter(typeof(PropertyActionConverter)), method PropertyAction (line 24) | public PropertyAction(PropertyReportItem ri) method ToString (line 29) | public override string ToString() class PropertyActionConverter (line 65) | internal class PropertyActionConverter : StringConverter method GetStandardValuesExclusive (line 67) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 72) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 81) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyActionUIEditor (line 95) | internal class PropertyActionUIEditor : UITypeEditor method PropertyActionUIEditor (line 97) | public PropertyActionUIEditor() method GetEditStyle (line 101) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 106) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyAppearance.cs class PropertyAppearance (line 14) | [TypeConverter(typeof(PropertyAppearanceConverter))] method PropertyAppearance (line 22) | public PropertyAppearance(PropertyReportItem ri) method PropertyAppearance (line 29) | public PropertyAppearance(PropertyReportItem ri, params string[] names) method ToString (line 220) | public override string ToString() method GetStyleValue (line 229) | private string GetStyleValue(string l1, string def) method SetStyleValue (line 235) | private void SetStyleValue(string l1, string val) method GetPRI (line 242) | public PropertyReportItem GetPRI() class PropertyAppearanceConverter (line 249) | internal class PropertyAppearanceConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 251) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 256) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 265) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyAppearanceUIEditor (line 279) | internal class PropertyAppearanceUIEditor : UITypeEditor method PropertyAppearanceUIEditor (line 281) | public PropertyAppearanceUIEditor() method GetEditStyle (line 285) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 290) | public override object EditValue(ITypeDescriptorContext context, class FontStyleConverter (line 328) | internal class FontStyleConverter : StringConverter method GetStandardValuesSupported (line 332) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 336) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 340) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class FontWeightConverter (line 347) | internal class FontWeightConverter : StringConverter method GetStandardValuesSupported (line 352) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 356) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 360) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class TextDecorationConverter (line 367) | internal class TextDecorationConverter : StringConverter method GetStandardValuesSupported (line 371) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 375) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 379) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class TextAlignConverter (line 386) | internal class TextAlignConverter : StringConverter method GetStandardValuesSupported (line 390) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 394) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 398) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class VerticalAlignConverter (line 405) | internal class VerticalAlignConverter : StringConverter method GetStandardValuesSupported (line 409) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 413) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 417) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class DirectionConverter (line 424) | internal class DirectionConverter : StringConverter method GetStandardValuesSupported (line 428) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 432) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 436) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class WritingModeConverter (line 443) | internal class WritingModeConverter : StringConverter method GetStandardValuesSupported (line 447) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 451) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 455) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class FormatConverter (line 462) | internal class FormatConverter : StringConverter method GetStandardValuesSupported (line 464) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 468) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 472) | public override StandardValuesCollection GetStandardValues(ITypeDescri... FILE: RdlDesign/RdlProperties/PropertyBackground.cs class PropertyBackground (line 15) | [TypeConverter(typeof(PropertyBackgroundConverter))] method PropertyBackground (line 23) | public PropertyBackground(PropertyReportItem ri) method PropertyBackground (line 30) | public PropertyBackground(PropertyReportItem ri, params string[] names) method GetStyleValue (line 113) | private string GetStyleValue(string l1, string def) method SetStyleValue (line 119) | private void SetStyleValue(string l1, string val) method ToString (line 125) | public override string ToString() method GetPRI (line 131) | public PropertyReportItem GetPRI() class PropertyBackgroundConverter (line 138) | internal class PropertyBackgroundConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 140) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 145) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 154) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyBackgroundUIEditor (line 168) | internal class PropertyBackgroundUIEditor : UITypeEditor method PropertyBackgroundUIEditor (line 170) | public PropertyBackgroundUIEditor() method GetEditStyle (line 174) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 179) | public override object EditValue(ITypeDescriptorContext context, class GradientTypeConverter (line 229) | internal class GradientTypeConverter : StringConverter method GetStandardValuesSupported (line 231) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 235) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 239) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class PropertyBackgroundImage (line 246) | [TypeConverter(typeof(PropertyBackgroundImageConverter))] method PropertyBackgroundImage (line 254) | public PropertyBackgroundImage(PropertyReportItem ri, string[] names) method ToString (line 280) | public override string ToString() method GetPRI (line 379) | public PropertyReportItem GetPRI() class PropertyBackgroundImageConverter (line 387) | internal class PropertyBackgroundImageConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 389) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 394) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 403) | public override object ConvertTo(ITypeDescriptorContext context, class ImageSourceConverter (line 419) | internal class ImageSourceConverter : StringConverter method GetStandardValuesSupported (line 421) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 425) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 430) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class ImageMIMETypeConverter (line 443) | internal class ImageMIMETypeConverter : StringConverter method GetStandardValuesSupported (line 445) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 449) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 453) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class ImageRepeatConverter (line 462) | internal class ImageRepeatConverter : StringConverter method GetStandardValuesSupported (line 464) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 468) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 472) | public override StandardValuesCollection GetStandardValues(ITypeDescri... FILE: RdlDesign/RdlProperties/PropertyBorder.cs class PropertyBorder (line 18) | [TypeConverter(typeof(PropertyBorderConverter)), method PropertyBorder (line 26) | public PropertyBorder(PropertyReportItem ri) method PropertyBorder (line 33) | public PropertyBorder(PropertyReportItem ri, params string[] names) method ToString (line 59) | public override string ToString() method GetPRI (line 66) | public PropertyReportItem GetPRI() class PropertyBorderConverter (line 74) | internal class PropertyBorderConverter : StringConverter method GetStandardValuesExclusive (line 76) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 81) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 90) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyBorderUIEditor (line 104) | internal class PropertyBorderUIEditor : UITypeEditor method PropertyBorderUIEditor (line 106) | public PropertyBorderUIEditor() method GetEditStyle (line 110) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 115) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyChart.cs class PropertyChart (line 14) | internal class PropertyChart : PropertyDataRegion method PropertyChart (line 16) | public PropertyChart(DesignXmlDraw d, DesignCtl dc, List ris)... class PropertyChartAxis (line 116) | [TypeConverter(typeof(ChartAxisTypeConverter))] method PropertyChartAxis (line 122) | internal PropertyChartAxis(PropertyChart pt, string axis) method ToString (line 372) | public override string ToString() method GetPRI (line 382) | public PropertyReportItem GetPRI() class ChartAxisTypeConverter (line 389) | internal class ChartAxisTypeConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 391) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 396) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 405) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyChartData (line 423) | [LocalizedCategory("ChartData")] method PropertyChartData (line 430) | internal PropertyChartData(PropertyChart pt) method GetChartDataValue (line 593) | private string GetChartDataValue(int i) method SetChartDataValue (line 612) | private void SetChartDataValue(int i, string expr) method ToString (line 644) | public override string ToString() method GetPRI (line 652) | public PropertyReportItem GetPRI() class ChartDataTypeConverter (line 660) | internal class ChartDataTypeConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 662) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 667) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 676) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyChartGridLines (line 694) | [TypeConverter(typeof(ChartGridLinesTypeConverter))] method PropertyChartGridLines (line 700) | internal PropertyChartGridLines(PropertyChart pt, params string[] names) method ToString (line 800) | public override string ToString() method GetPRI (line 807) | public PropertyReportItem GetPRI() class ChartGridLinesTypeConverter (line 814) | internal class ChartGridLinesTypeConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 816) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 821) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 830) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyChartLegend (line 847) | [LocalizedCategory("ChartLegend")] method PropertyChartLegend (line 853) | internal PropertyChartLegend(PropertyChart pt) method ToString (line 946) | public override string ToString() method GetPRI (line 957) | public PropertyReportItem GetPRI() class ChartLegendTypeConverter (line 964) | internal class ChartLegendTypeConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 966) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 971) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 980) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyChartTitle (line 998) | [LocalizedCategory("ChartTitle")] method PropertyChartTitle (line 1007) | internal PropertyChartTitle(PropertyChart pt) method PropertyChartTitle (line 1014) | internal PropertyChartTitle(PropertyChart pt, params string[] names) method ToString (line 1075) | public override string ToString() method GetPRI (line 1082) | public PropertyReportItem GetPRI() class ChartTitleTypeConverter (line 1089) | internal class ChartTitleTypeConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 1091) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 1096) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 1105) | public override object ConvertTo(ITypeDescriptorContext context, class ChartTypeConverter (line 1122) | internal class ChartTypeConverter : StringConverter method GetStandardValuesSupported (line 1124) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 1128) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 1132) | public override StandardValuesCollection GetStandardValues(ITypeDescri... class PaletteTypeConverter (line 1141) | internal class PaletteTypeConverter : StringConverter method GetStandardValuesSupported (line 1143) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 1147) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 1151) | public override StandardValuesCollection GetStandardValues(ITypeDescri... type LineStyleEnum (line 1159) | internal enum LineStyleEnum {Solid, Dotted, Dashed }; FILE: RdlDesign/RdlProperties/PropertyDataRegion.cs class PropertyDataRegion (line 12) | internal class PropertyDataRegion : PropertyReportItem method PropertyDataRegion (line 14) | public PropertyDataRegion(DesignXmlDraw d, DesignCtl dc, List... class DataSetsConverter (line 106) | internal class DataSetsConverter : StringConverter method GetStandardValuesSupported (line 108) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 112) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 116) | public override StandardValuesCollection GetStandardValues(ITypeDescri... FILE: RdlDesign/RdlProperties/PropertyExpr.cs class PropertyExpr (line 19) | [TypeConverter(typeof(PropertyExprConverter)), method PropertyExpr (line 26) | public PropertyExpr(string ex) method ToString (line 40) | public override string ToString() class PropertyExprConverter (line 46) | internal class PropertyExprConverter : StringConverter method CanConvertTo (line 49) | public override bool CanConvertTo(ITypeDescriptorContext context, method CanConvertFrom (line 58) | public override bool CanConvertFrom(ITypeDescriptorContext context, Ty... method ConvertTo (line 68) | public override object ConvertTo(ITypeDescriptorContext context, method ConvertFrom (line 81) | public override object ConvertFrom(ITypeDescriptorContext context, class PropertyExprUIEditor (line 91) | internal class PropertyExprUIEditor : UITypeEditor method PropertyExprUIEditor (line 93) | public PropertyExprUIEditor() method GetEditStyle (line 97) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 102) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyFilters.cs class PropertyFilters (line 18) | [TypeConverter(typeof(PropertyFiltersConverter)), method PropertyFilters (line 24) | public PropertyFilters(PropertyReportItem ri) method ToString (line 29) | public override string ToString() method GetPRI (line 67) | public PropertyReportItem GetPRI() class PropertyFiltersConverter (line 75) | internal class PropertyFiltersConverter : StringConverter method GetStandardValuesExclusive (line 77) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 82) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 91) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyFiltersUIEditor (line 105) | internal class PropertyFiltersUIEditor : UITypeEditor method PropertyFiltersUIEditor (line 107) | public PropertyFiltersUIEditor() method GetEditStyle (line 111) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 116) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyGrouping.cs class PropertyGrouping (line 18) | [TypeConverter(typeof(PropertyGroupingConverter)), method PropertyGrouping (line 24) | public PropertyGrouping(PropertyReportItem ri) method ToString (line 29) | public override string ToString() method GetPRI (line 39) | public PropertyReportItem GetPRI() class PropertyGroupingConverter (line 47) | internal class PropertyGroupingConverter : StringConverter method GetStandardValuesExclusive (line 49) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 54) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 63) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyGroupingUIEditor (line 77) | internal class PropertyGroupingUIEditor : UITypeEditor method PropertyGroupingUIEditor (line 79) | public PropertyGroupingUIEditor() method GetEditStyle (line 83) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 88) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyImage.cs class PropertyImage (line 17) | internal class PropertyImage : PropertyReportItem method PropertyImage (line 19) | internal PropertyImage(DesignXmlDraw d, DesignCtl dc, List ri... class PropertyImageI (line 34) | [TypeConverter(typeof(PropertyImageConverter))] method PropertyImageI (line 40) | public PropertyImageI(PropertyImage pi) method ToString (line 109) | public override string ToString() method GetPRI (line 122) | public PropertyReportItem GetPRI() class PropertyImageConverter (line 131) | internal class PropertyImageConverter : ExpandableObjectConverter method GetStandardValuesExclusive (line 133) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 138) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 147) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyImageUIEditor (line 163) | internal class PropertyImageUIEditor : UITypeEditor method PropertyImageUIEditor (line 165) | public PropertyImageUIEditor() method GetEditStyle (line 169) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 174) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyList.cs class PropertyList (line 14) | [TypeConverter(typeof(PropertyListConverter))] method PropertyList (line 17) | public PropertyList(DesignXmlDraw d, DesignCtl dc, List ris) class PropertyListConverter (line 78) | internal class PropertyListConverter : ExpandableObjectConverter method PropertyListConverter (line 80) | public PropertyListConverter(){} method ConvertTo (line 81) | public override object ConvertTo(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyLocation.cs class PropertyLocation (line 11) | [TypeConverter(typeof(PropertyLocationConverter))] method PropertyLocation (line 18) | public PropertyLocation(PropertyReportItem pri, string x, string y) class PropertyLocationConverter (line 51) | internal class PropertyLocationConverter : ExpandableObjectConverter method ConvertTo (line 53) | public override object ConvertTo(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyMargin.cs class PropertyMargin (line 11) | [TypeConverter(typeof(PropertyMarginConverter))] method PropertyMargin (line 16) | public PropertyMargin(PropertyReport pr) method SetMargin (line 77) | void SetMargin(string l, string v) class PropertyMarginConverter (line 85) | internal class PropertyMarginConverter : ExpandableObjectConverter method CanConvertTo (line 87) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 96) | public override object ConvertTo(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyMatrix.cs class PropertyMatrix (line 20) | [TypeConverter(typeof(PropertyMatrixConverter))] method PropertyMatrix (line 23) | public PropertyMatrix(DesignXmlDraw d, DesignCtl dc, List ris) class PropertyMatrixConverter (line 28) | internal class PropertyMatrixConverter : ExpandableObjectConverter method ConvertTo (line 30) | public override object ConvertTo(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyPadding.cs class PropertyPadding (line 11) | [TypeConverter(typeof(PropertyPaddingConverter))] method PropertyPadding (line 18) | public PropertyPadding(PropertyReportItem pri) method PropertyPadding (line 25) | public PropertyPadding(PropertyReportItem ri, params string[] names) method SetPadding (line 95) | void SetPadding(string l, PropertyExpr pe, bool bMinus) //Josh: Eddite... method GetStyleValue (line 104) | private string GetStyleValue(string l1, string def) method SetStyleValue (line 110) | private void SetStyleValue(string l1, string val) method ToString (line 116) | public override string ToString() method GetPRI (line 122) | public PropertyReportItem GetPRI() class PropertyPaddingConverter (line 130) | internal class PropertyPaddingConverter : ExpandableObjectConverter method CanConvertTo (line 132) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 141) | public override object ConvertTo(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyPrintFirstLast.cs class PropertyPrintFirstLast (line 13) | [TypeConverter(typeof(PropertyPrintFirstLastConverter))] method PropertyPrintFirstLast (line 19) | public PropertyPrintFirstLast(PropertyReport pr, XmlNode phNode) method SetPrint (line 72) | void SetPrint(string l, bool b) method SetProp (line 77) | void SetProp(string l, string v) class PropertyPrintFirstLastConverter (line 88) | internal class PropertyPrintFirstLastConverter : ExpandableObjectConverter method CanConvertTo (line 90) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 99) | public override object ConvertTo(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyRectangle.cs class PropertyRectangle (line 10) | internal class PropertyRectangle : PropertyReportItem method PropertyRectangle (line 12) | public PropertyRectangle(DesignXmlDraw d, DesignCtl dc, List ... FILE: RdlDesign/RdlProperties/PropertyReport.cs class PropertyReport (line 17) | [DefaultProperty("Author")] method PropertyReport (line 23) | public PropertyReport(DesignXmlDraw d, DesignCtl dc) method GetBodyValue (line 267) | string GetBodyValue(string l, string def) method SetBodyValue (line 274) | void SetBodyValue(string l, string v) method RemoveBodyValue (line 285) | void RemoveBodyValue(string l) method GetReportValue (line 296) | internal string GetReportValue(string l) method GetReportValue (line 301) | internal string GetReportValue(string l, string def) method SetReportValue (line 307) | internal void SetReportValue(string l, string v) class PropertyReportParameters (line 321) | [TypeConverter(typeof(PropertyReportParameterConverter)), method PropertyReportParameters (line 327) | public PropertyReportParameters(PropertyReport r) method ToString (line 332) | public override string ToString() class PropertyReportParameterConverter (line 359) | internal class PropertyReportParameterConverter : StringConverter method GetStandardValuesExclusive (line 361) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 366) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 375) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyReportParameterUIEditor (line 389) | internal class PropertyReportParameterUIEditor : UITypeEditor method PropertyReportParameterUIEditor (line 392) | public PropertyReportParameterUIEditor() method GetEditStyle (line 396) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 401) | public override object EditValue(ITypeDescriptorContext context, class PropertyReportCode (line 439) | [TypeConverter(typeof(PropertyReportCodeConverter)), method PropertyReportCode (line 445) | public PropertyReportCode(PropertyReport r) method ToString (line 450) | public override string ToString() class PropertyReportCodeConverter (line 457) | internal class PropertyReportCodeConverter : StringConverter method GetStandardValuesExclusive (line 459) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 464) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 473) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyReportCodeUIEditor (line 487) | internal class PropertyReportCodeUIEditor : UITypeEditor method PropertyReportCodeUIEditor (line 489) | public PropertyReportCodeUIEditor() : base() method GetEditStyle (line 493) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 498) | public override object EditValue(ITypeDescriptorContext context, class PropertyReportModulesClasses (line 535) | [TypeConverter(typeof(PropertyReportModulesClassesConverter)), method PropertyReportModulesClasses (line 541) | public PropertyReportModulesClasses(PropertyReport r) method ToString (line 546) | public override string ToString() class PropertyReportModulesClassesConverter (line 561) | internal class PropertyReportModulesClassesConverter : StringConverter method GetStandardValuesExclusive (line 563) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 568) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 577) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyReportModulesClassesUIEditor (line 591) | internal class PropertyReportModulesClassesUIEditor : UITypeEditor method PropertyReportModulesClassesUIEditor (line 593) | public PropertyReportModulesClassesUIEditor() : base() method GetEditStyle (line 597) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 602) | public override object EditValue(ITypeDescriptorContext context, class FileUIEditor (line 639) | internal class FileUIEditor : UITypeEditor method FileUIEditor (line 641) | public FileUIEditor() method GetEditStyle (line 645) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 650) | public override object EditValue(ITypeDescriptorContext context, class ElementStyleConverter (line 689) | internal class ElementStyleConverter : StringConverter method GetStandardValuesSupported (line 691) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 695) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 699) | public override StandardValuesCollection GetStandardValues(ITypeDescri... FILE: RdlDesign/RdlProperties/PropertyReportItem.cs class PropertyReportItem (line 17) | [DefaultProperty("Name")] method PropertyReportItem (line 32) | public PropertyReportItem(DesignXmlDraw d, DesignCtl dc, List... method IsExpression (line 343) | internal bool IsExpression(string e) method GetName (line 354) | internal string GetName(XmlNode node) method SetName (line 362) | internal void SetName(XmlNode node, string name) method GetWithList (line 381) | internal string GetWithList(string def, params string[] names) method GetWithList (line 386) | internal string GetWithList(XmlNode n, string def, params string[] names) method RemoveWithList (line 397) | internal void RemoveWithList(params string[] names) method RemoveWithList (line 419) | private void RemoveWithList(XmlNode n, params string[] names) method SetWithList (line 431) | internal void SetWithList(string v, params string[] names) method SetWithList (line 453) | private void SetWithList(XmlNode n, string v, params string[] names) method GetValue (line 463) | internal string GetValue(string l, string v) method GetValue (line 467) | internal string GetValue(string l1, string l2, string v) method GetValue (line 474) | internal string GetValue(string l1, string l2, string l3, string v) method SetValue (line 485) | internal void SetValue(string l, bool b) method SetValue (line 490) | internal void SetValue(string l, string v) method SetValue (line 502) | internal void SetValue(string l1, string l2, string v) method SetValue (line 515) | internal void SetValue(string l1, string l2, string l3, string v) method RemoveValue (line 529) | internal void RemoveValue(string l1) method RemoveValue (line 541) | internal void RemoveValue(string l1, string l2) method GetClassName (line 558) | public String GetClassName() method GetAttributes (line 563) | public AttributeCollection GetAttributes() method GetComponentName (line 568) | public String GetComponentName() method GetConverter (line 573) | public TypeConverter GetConverter() method GetDefaultEvent (line 578) | public EventDescriptor GetDefaultEvent() method GetDefaultProperty (line 583) | public PropertyDescriptor GetDefaultProperty() method GetEditor (line 588) | public object GetEditor(Type editorBaseType) method GetEvents (line 593) | public EventDescriptorCollection GetEvents(Attribute[] attributes) method GetEvents (line 598) | public EventDescriptorCollection GetEvents() method GetPropertyOwner (line 603) | public object GetPropertyOwner(PropertyDescriptor pd) method GetProperties (line 608) | public PropertyDescriptorCollection GetProperties(Attribute[] attributes) method GetProperties (line 613) | public PropertyDescriptorCollection GetProperties() method SetCustomReportItem (line 654) | private void SetCustomReportItem(PropertyDescriptorCollection pdc) method GetPRI (line 693) | public PropertyReportItem GetPRI() class ColorConverter (line 701) | internal class ColorConverter : StringConverter method GetStandardValuesSupported (line 703) | public override bool GetStandardValuesSupported(ITypeDescriptorContext... method GetStandardValuesExclusive (line 707) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method GetStandardValues (line 711) | public override StandardValuesCollection GetStandardValues(ITypeDescri... type IReportItem (line 719) | internal interface IReportItem method GetPRI (line 721) | PropertyReportItem GetPRI(); FILE: RdlDesign/RdlProperties/PropertySize.cs class PropertySize (line 11) | [TypeConverter(typeof(PropertySizeConverter))] method PropertySize (line 18) | public PropertySize(PropertyReportItem pri, string h, string w) class PropertySizeConverter (line 51) | internal class PropertySizeConverter : ExpandableObjectConverter method ConvertTo (line 53) | public override object ConvertTo(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertySorting.cs class PropertySorting (line 18) | [TypeConverter(typeof(PropertySortingConverter)), method PropertySorting (line 24) | public PropertySorting(PropertyReportItem ri) method ToString (line 29) | public override string ToString() method GetPRI (line 58) | public PropertyReportItem GetPRI() class PropertySortingConverter (line 66) | internal class PropertySortingConverter : StringConverter method GetStandardValuesExclusive (line 68) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 73) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 82) | public override object ConvertTo(ITypeDescriptorContext context, class PropertySortingUIEditor (line 96) | internal class PropertySortingUIEditor : UITypeEditor method PropertySortingUIEditor (line 98) | internal PropertySortingUIEditor() method GetEditStyle (line 102) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 107) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertySubreport.cs class PropertySubreport (line 16) | internal class PropertySubreport : PropertyReportItem method PropertySubreport (line 18) | public PropertySubreport(DesignXmlDraw d, DesignCtl dc, List ... class PropertySubreportUIEditor (line 79) | internal class PropertySubreportUIEditor : UITypeEditor method PropertySubreportUIEditor (line 81) | public PropertySubreportUIEditor() method GetEditStyle (line 85) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 90) | public override object EditValue(ITypeDescriptorContext context, class PropertySubreportParametersUIEditor (line 124) | internal class PropertySubreportParametersUIEditor : UITypeEditor method PropertySubreportParametersUIEditor (line 126) | public PropertySubreportParametersUIEditor() method GetEditStyle (line 130) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 135) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyTable.cs class PropertyTable (line 22) | [TypeConverter(typeof(PropertyTableConverter)), method PropertyTable (line 26) | public PropertyTable(DesignXmlDraw d, DesignCtl dc, List ris) class PropertyTableConverter (line 31) | internal class PropertyTableConverter : ExpandableObjectConverter method ConvertTo (line 33) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyTableUIEditor (line 46) | internal class PropertyTableUIEditor : UITypeEditor method PropertyTableUIEditor (line 48) | public PropertyTableUIEditor() method GetEditStyle (line 52) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 57) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlProperties/PropertyTableTab.cs class PropertyTableTab (line 20) | internal class PropertyTableTab : PropertyTab method PropertyTableTab (line 24) | public PropertyTableTab() method CanExtend (line 62) | public override bool CanExtend(object o) method GetProperties (line 71) | public override PropertyDescriptorCollection GetProperties(object comp... method GetProperties (line 85) | public override PropertyDescriptorCollection GetProperties(ITypeDescri... FILE: RdlDesign/RdlProperties/PropertyTextbox.cs class PropertyTextbox (line 13) | [DefaultProperty("Value")] method PropertyTextbox (line 16) | public PropertyTextbox(DesignXmlDraw d, DesignCtl dc, List ri... class HideDuplicatesConverter (line 96) | internal class HideDuplicatesConverter : StringConverter method GetStandardValuesSupported (line 99) | public override bool GetStandardValuesSupported(ITypeDescriptorConte... method GetStandardValuesExclusive (line 104) | public override bool GetStandardValuesExclusive(ITypeDescriptorConte... method GetStandardValues (line 112) | public override StandardValuesCollection GetStandardValues(ITypeDesc... FILE: RdlDesign/RdlProperties/PropertyVisibility.cs class PropertyVisibility (line 18) | [TypeConverter(typeof(PropertyVisibilityConverter)), method PropertyVisibility (line 24) | public PropertyVisibility(PropertyReportItem ri) method ToString (line 29) | public override string ToString() method GetPRI (line 47) | public PropertyReportItem GetPRI() class PropertyVisibilityConverter (line 55) | internal class PropertyVisibilityConverter : StringConverter method GetStandardValuesExclusive (line 57) | public override bool GetStandardValuesExclusive(ITypeDescriptorContext... method CanConvertTo (line 62) | public override bool CanConvertTo(ITypeDescriptorContext context, method ConvertTo (line 71) | public override object ConvertTo(ITypeDescriptorContext context, class PropertyVisibilityUIEditor (line 85) | internal class PropertyVisibilityUIEditor : UITypeEditor method PropertyVisibilityUIEditor (line 87) | public PropertyVisibilityUIEditor() method GetEditStyle (line 91) | public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorCont... method EditValue (line 96) | public override object EditValue(ITypeDescriptorContext context, FILE: RdlDesign/RdlUserControl.Designer.cs class RdlUserControl (line 3) | partial class RdlUserControl method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: RdlDesign/RdlUserControl.cs class RdlUserControl (line 20) | public partial class RdlUserControl : UserControl method RdlUserControl (line 36) | public RdlUserControl() method OpenFile (line 77) | public void OpenFile(string filePath) method OpenFile (line 81) | public void OpenFile(Uri filePath) method ResetPassword (line 91) | internal void ResetPassword() method GetRdlSource (line 113) | private string GetRdlSource() method GetPassword (line 152) | internal string GetPassword() method newToolStripButton1_Click (line 177) | private void newToolStripButton1_Click(object sender, EventArgs e) method FileSave (line 197) | public bool FileSave() method FileSave (line 210) | private bool FileSave(Uri file, string rdl) method GetRdlText (line 238) | public string GetRdlText() method SetTitle (line 254) | private void SetTitle() method LoadReport (line 275) | private void LoadReport(Uri file, string rdl, bool bMenuUpdate) method ShowEditLines (line 315) | public void ShowEditLines(bool bShow) method ShowPreviewWaitDialog (line 327) | internal void ShowPreviewWaitDialog(bool bShow) method ReportItemInserted (line 353) | private void ReportItemInserted(object sender, System.EventArgs e) method OpenSubReportEvent (line 371) | private void OpenSubReportEvent(object sender, SubReportEventArgs e) method SelectionMoved (line 387) | private void SelectionMoved(object sender, System.EventArgs e) method SelectionChanged (line 392) | private void SelectionChanged(object sender, System.EventArgs e) method DesignTabChanged (line 441) | private void DesignTabChanged(object sender, System.EventArgs e) method EnableEditTextBox (line 628) | private void EnableEditTextBox() method SetStatusNameAndPosition (line 654) | private void SetStatusNameAndPosition() method SetProperties (line 664) | private void SetProperties() method ShowProperties (line 672) | internal void ShowProperties(bool bShow) method ApplyStyleToSelected (line 696) | public void ApplyStyleToSelected(string name, string v) method ExportAsync (line 718) | public async Task ExportAsync(Rdl.OutputPresentationType type) method SaveAsAsync (line 798) | public async Task SaveAsAsync(string filename, OutputPresentationType ... method Print (line 837) | public void Print(PrintDocument pd) method openToolStripButton1_Click (line 843) | private void openToolStripButton1_Click(object sender, EventArgs e) method OpenReport (line 875) | private void OpenReport(Uri file, string rdl) method FileSaveAs (line 910) | public bool FileSaveAs() method saveToolStripButton1_Click (line 940) | private void saveToolStripButton1_Click(object sender, EventArgs e) method cutToolStripButton1_Click (line 960) | private void cutToolStripButton1_Click(object sender, EventArgs e) method copyToolStripButton1_Click (line 977) | private void copyToolStripButton1_Click(object sender, EventArgs e) method pasteToolStripButton1_Click (line 993) | private void pasteToolStripButton1_Click(object sender, EventArgs e) method undoToolStripButton1_Click (line 998) | private void undoToolStripButton1_Click(object sender, EventArgs e) method lineToolStripButton1_Click (line 1004) | private void lineToolStripButton1_Click(object sender, EventArgs e) method ctlEditTextbox_Validated (line 1009) | private void ctlEditTextbox_Validated(object sender, EventArgs e) method ctlEditTextbox_KeyDown (line 1014) | private void ctlEditTextbox_KeyDown(object sender, KeyEventArgs e) method mainTB_ItemClicked (line 1019) | private void mainTB_ItemClicked(object sender, ToolStripItemClickedEve... method ToolStripButtons_Clicked (line 1025) | private void ToolStripButtons_Clicked(object sender, EventArgs e) method boldToolStripButton1_Click (line 1036) | private void boldToolStripButton1_Click(object sender, EventArgs e) method italiacToolStripButton1_Click (line 1044) | private void italiacToolStripButton1_Click(object sender, EventArgs e) method underlineToolStripButton2_Click (line 1052) | private void underlineToolStripButton2_Click(object sender, EventArgs e) method leftAlignToolStripButton2_Click (line 1059) | private void leftAlignToolStripButton2_Click(object sender, EventArgs e) method fontToolStripComboBox1_SelectedIndexChanged (line 1087) | private void fontToolStripComboBox1_SelectedIndexChanged(object sender... method fontToolStripComboBox1_Validated (line 1096) | private void fontToolStripComboBox1_Validated(object sender, EventArgs e) method fontSizeToolStripComboBox1_SelectedIndexChanged (line 1105) | private void fontSizeToolStripComboBox1_SelectedIndexChanged(object se... method fontSizeToolStripComboBox1_Validated (line 1114) | private void fontSizeToolStripComboBox1_Validated(object sender, Event... method printToolStripButton2_Click (line 1125) | private void printToolStripButton2_Click(object sender, EventArgs e) method zoomToolStripComboBox1_SelectedIndexChanged (line 1190) | private void zoomToolStripComboBox1_SelectedIndexChanged(object sender... method selectToolStripButton2_Click (line 1220) | private void selectToolStripButton2_Click(object sender, EventArgs e) method pdfToolStripButton2_Click (line 1226) | private async void pdfToolStripButton2_Click(object sender, EventArgs e) method htmlToolStripButton2_Click (line 1233) | private async void htmlToolStripButton2_Click(object sender, EventArgs e) method excelToolStripButton2_Click (line 1238) | private async void excelToolStripButton2_Click(object sender, EventArg... method XmlToolStripButton2_Click (line 1243) | private async void XmlToolStripButton2_Click(object sender, EventArgs e) method MhtToolStripButton2_Click (line 1248) | private async void MhtToolStripButton2_Click(object sender, EventArgs e) method CsvToolStripButton2_Click (line 1253) | private async void CsvToolStripButton2_Click(object sender, EventArgs e) method RtfToolStripButton2_Click (line 1258) | private async void RtfToolStripButton2_Click(object sender, EventArgs e) method TifToolStripButton2_Click (line 1263) | private async void TifToolStripButton2_Click(object sender, EventArgs e) method foreColorPicker1_Validated (line 1268) | private void foreColorPicker1_Validated(object sender, EventArgs e) method foreColorPicker1_SelectedValueChanged (line 1277) | private void foreColorPicker1_SelectedValueChanged(object sender, Even... method backColorPicker1_Validated (line 1286) | private void backColorPicker1_Validated(object sender, EventArgs e) method backColorPicker1_Click (line 1295) | private void backColorPicker1_Click(object sender, EventArgs e) method ButtonShowProperties_Click (line 1304) | private void ButtonShowProperties_Click(object sender, EventArgs e) FILE: RdlDesign/ReportCtl.Designer.cs class ReportCtl (line 9) | internal partial class ReportCtl method InitializeComponent (line 43) | private void InitializeComponent() method Dispose (line 286) | protected override void Dispose( bool disposing ) FILE: RdlDesign/ReportCtl.cs class ReportCtl (line 18) | internal partial class ReportCtl : System.Windows.Forms.UserControl, IPr... method ReportCtl (line 20) | public ReportCtl(DesignXmlDraw dxDraw) method InitValues (line 30) | private void InitValues() method GetPaperSizeAsInch (line 87) | private string GetPaperSizeAsInch(int paperSize) method GetPaperSizeAsMillimeter (line 93) | private string GetPaperSizeAsMillimeter(int paperSize) method IsValid (line 99) | public bool IsValid() method Apply (line 104) | public void Apply() method tbSize_Validating (line 139) | private void tbSize_Validating(object sender, System.ComponentModel.Ca... method cbPageSize_SelectedIndexChanged (line 153) | private void cbPageSize_SelectedIndexChanged(object sender, EventArgs e) FILE: RdlDesign/ReportNames.cs class ReportNames (line 16) | internal class ReportNames method ReportNames (line 22) | public ReportNames(XmlDocument rDoc) method BuildNames (line 28) | private void BuildNames() method BuildNamesLoop (line 36) | private void BuildNamesLoop(XmlNode xNode) method ChangeName (line 116) | internal bool ChangeName(XmlNode xNode, string newName) method ChangeGroupName (line 142) | internal bool ChangeGroupName(XmlNode xNode, string newName) method GetRINodeFromName (line 167) | internal XmlNode GetRINodeFromName(string ri_name) method FindNext (line 178) | internal XmlNode FindNext(XmlNode xNode) method FindPrior (line 195) | internal XmlNode FindPrior(XmlNode xNode) method AddNode (line 233) | internal void AddNode(XmlNode xNode) method GenerateName (line 253) | internal string GenerateName(XmlNode xNode) method GenerateGroupingName (line 275) | internal string GenerateGroupingName(XmlNode xNode) method NameError (line 297) | internal string NameError(XmlNode xNode, string name) method DescriptionDuplicateNameError (line 326) | private string DescriptionDuplicateNameError(string name, XmlNode fNode) method GroupingNameCheck (line 331) | internal string GroupingNameCheck(XmlNode xNode, string name) method IsNameValid (line 350) | static internal bool IsNameValid(string name) method RemoveName (line 362) | internal void RemoveName(XmlNode xNode) method RemoveChildren (line 375) | private void RemoveChildren(XmlNode xNode) method SetElementAttribute (line 420) | private void SetElementAttribute(XmlNode parent, string name, string val) method DataSourceName (line 481) | internal XmlNode DataSourceName(string dsn) method GetFields (line 558) | internal string[] GetFields(string dataSetName, bool asExpression) method GetReportParameterDefaultValue (line 611) | internal string GetReportParameterDefaultValue(string parameterExpress... method GetReportParameters (line 641) | internal string[] GetReportParameters(bool asExpression) method GetReportModules (line 676) | internal string[] GetReportModules(bool asExpression) method GetReportClasses (line 710) | internal string[] GetReportClasses(bool asExpression) FILE: RdlDesign/ReportParameterCtl.Designer.cs class ReportParameterCtl (line 3) | partial class ReportParameterCtl method Dispose (line 13) | protected override void Dispose(bool disposing) method InitializeComponent (line 30) | private void InitializeComponent() FILE: RdlDesign/ReportParameterCtl.cs class ReportParameterCtl (line 13) | public partial class ReportParameterCtl : UserControl, IProperty method ReportParameterCtl (line 17) | public ReportParameterCtl() method ReportParameterCtl (line 23) | internal ReportParameterCtl(DesignXmlDraw dxDraw):this() method SetDraw (line 28) | internal void SetDraw(DesignXmlDraw dxDraw) method IsValid (line 41) | public bool IsValid() method Apply (line 46) | public void Apply() method InitValues (line 80) | private void InitValues() method InitDefaultValues (line 117) | private void InitDefaultValues(XmlNode reportParameterNode, ReportParm... method InitValidValues (line 146) | private void InitValidValues(XmlNode reportParameterNode, ReportParm r... method ApplyDefaultValues (line 186) | private void ApplyDefaultValues(XmlNode repNode, ReportParm repParm) method ApplyValidValues (line 213) | private void ApplyValidValues(XmlNode repNode, ReportParm repParm) method bAdd_Click (line 247) | private void bAdd_Click(object sender, System.EventArgs e) method bRemove_Click (line 255) | private void bRemove_Click(object sender, System.EventArgs e) method lbParameters_SelectedIndexChanged (line 269) | private void lbParameters_SelectedIndexChanged(object sender, System.E... method lbParameters_MoveItem (line 343) | private void lbParameters_MoveItem(int curloc, int newloc) method tbParmName_TextChanged (line 356) | private void tbParmName_TextChanged(object sender, System.EventArgs e) method cbParmType_SelectedIndexChanged (line 374) | private void cbParmType_SelectedIndexChanged(object sender, System.Eve... method tbParmPrompt_TextChanged (line 387) | private void tbParmPrompt_TextChanged(object sender, System.EventArgs e) method ckbParmAllowNull_CheckedChanged (line 400) | private void ckbParmAllowNull_CheckedChanged(object sender, System.Eve... method ckbParmAllowBlank_CheckedChanged (line 413) | private void ckbParmAllowBlank_CheckedChanged(object sender, System.Ev... method bParmUp_Click (line 426) | private void bParmUp_Click(object sender, System.EventArgs e) method bParmDown_Click (line 435) | private void bParmDown_Click(object sender, System.EventArgs e) method cbDefaultDataSets_SelectedIndexChanged (line 444) | private void cbDefaultDataSets_SelectedIndexChanged(object sender, Sys... method cbValidDataSets_SelectedIndexChanged (line 463) | private void cbValidDataSets_SelectedIndexChanged(object sender, Syste... method cbDefaultValueField_SelectedIndexChanged (line 486) | private void cbDefaultValueField_SelectedIndexChanged(object sender, S... method cbValidFields_SelectedIndexChanged (line 499) | private void cbValidFields_SelectedIndexChanged(object sender, System.... method cbValidDisplayField_SelectedIndexChanged (line 512) | private void cbValidDisplayField_SelectedIndexChanged(object sender, S... method rbDefaultValues_CheckedChanged (line 525) | private void rbDefaultValues_CheckedChanged(object sender, System.Even... method rbDefaultDataSetName_CheckedChanged (line 542) | private void rbDefaultDataSetName_CheckedChanged(object sender, System... method rbValues_CheckedChanged (line 559) | private void rbValues_CheckedChanged(object sender, System.EventArgs e) method rbDataSet_CheckedChanged (line 577) | private void rbDataSet_CheckedChanged(object sender, System.EventArgs e) method bDefaultValues_Click (line 594) | private void bDefaultValues_Click(object sender, System.EventArgs e) method bValidValues_Click (line 614) | private void bValidValues_Click(object sender, System.EventArgs e) method ckbParmMultiValue_CheckedChanged (line 633) | private void ckbParmMultiValue_CheckedChanged(object sender, EventArgs e) FILE: RdlDesign/ReportXmlCtl.cs class ReportXmlCtl (line 18) | internal class ReportXmlCtl : System.Windows.Forms.UserControl, IProperty method ReportXmlCtl (line 35) | internal ReportXmlCtl(DesignXmlDraw dxDraw) method InitValues (line 45) | private void InitValues() method Dispose (line 57) | protected override void Dispose( bool disposing ) method InitializeComponent (line 74) | private void InitializeComponent() method IsValid (line 159) | public bool IsValid() method Apply (line 164) | public void Apply() method bOpenXsl_Click (line 186) | private void bOpenXsl_Click(object sender, System.EventArgs e) FILE: RdlDesign/Resources/Strings.Designer.cs class Strings (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Strings (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlDesign/SQLCtl.Designer.cs class SQLCtl (line 9) | internal partial class SQLCtl : System.Windows.Forms.Form method InitializeComponent (line 22) | private void InitializeComponent() method Dispose (line 119) | protected override void Dispose( bool disposing ) FILE: RdlDesign/SQLCtl.cs class SQLCtl (line 16) | internal partial class SQLCtl method SQLCtl (line 22) | internal SQLCtl(DesignXmlDraw dxDraw, string datasource, string sql, D... method InitValues (line 34) | private void InitValues(string sql) method bOK_Click (line 100) | private void bOK_Click(object sender, System.EventArgs e) method tvTablesColumns_BeforeExpand (line 104) | private void tvTablesColumns_BeforeExpand(object sender, System.Window... method tvTablesColumns_ExpandTable (line 109) | private void tvTablesColumns_ExpandTable(TreeNode tNode) method bMove_Click (line 138) | private void bMove_Click(object sender, System.EventArgs e) method tbSQL_KeyDown (line 175) | private void tbSQL_KeyDown(object sender, KeyEventArgs e) FILE: RdlDesign/SimpleButton.cs class SimpleButton (line 11) | internal class SimpleButton : Button method SimpleButton (line 17) | public SimpleButton(Control parent) method DrawPanelPaint (line 32) | private void DrawPanelPaint(object sender, System.Windows.Forms.PaintE... method SimpleButton_MouseDown (line 93) | private void SimpleButton_MouseDown(object sender, MouseEventArgs e) method SimpleButton_MouseUp (line 99) | private void SimpleButton_MouseUp(object sender, MouseEventArgs e) method SimpleButton_MouseEnter (line 105) | private void SimpleButton_MouseEnter(object sender, EventArgs e) method SimpleButton_MouseLeave (line 110) | private void SimpleButton_MouseLeave(object sender, EventArgs e) FILE: RdlDesign/SimpleToggle.cs class SimpleToggle (line 11) | internal class SimpleToggle : CheckBox method SimpleToggle (line 18) | public SimpleToggle() method DrawPanelPaint (line 33) | private void DrawPanelPaint(object sender, System.Windows.Forms.PaintE... method OnCheckedChanged (line 105) | protected override void OnCheckedChanged(EventArgs e) method OnClick (line 111) | protected override void OnClick(EventArgs e) method OnEnabledChanged (line 117) | protected override void OnEnabledChanged(EventArgs e) method SimpleToggle_MouseEnter (line 132) | private void SimpleToggle_MouseEnter(object sender, EventArgs e) method SimpleToggle_MouseLeave (line 137) | private void SimpleToggle_MouseLeave(object sender, EventArgs e) FILE: RdlDesign/SingleCtlDialog.Designer.cs class SingleCtlDialog (line 9) | internal partial class SingleCtlDialog : System.Windows.Forms.Form method InitializeComponent (line 19) | private void InitializeComponent() method Dispose (line 67) | protected override void Dispose( bool disposing ) FILE: RdlDesign/SingleCtlDialog.cs type SingleCtlTypeEnum (line 13) | internal enum SingleCtlTypeEnum class SingleCtlDialog (line 23) | internal partial class SingleCtlDialog method SingleCtlDialog (line 31) | internal SingleCtlDialog(DesignCtl dc, DesignXmlDraw dxDraw, List ris) method StaticSeriesCtl (line 53) | public StaticSeriesCtl() method IsValid (line 58) | public bool IsValid() method Apply (line 63) | public void Apply() method FunctionButtonClick (line 97) | private void FunctionButtonClick(Object sender, EventArgs e) method functionBox (line 117) | private void functionBox(TextBox txt) method chkShowLabels_CheckedChanged (line 135) | private void chkShowLabels_CheckedChanged(object sender, EventArgs e) method chkMarker_CheckedChanged (line 144) | private void chkMarker_CheckedChanged(object sender, EventArgs e) method cbLine_SelectedIndexChanged (line 152) | private void cbLine_SelectedIndexChanged(object sender, EventArgs e) method InitValues (line 164) | private void InitValues() method btnDel_Click (line 270) | private void btnDel_Click(object sender, EventArgs e) method btnAdd_Click (line 284) | private void btnAdd_Click(object sender, EventArgs e) class SeriesItem (line 299) | private class SeriesItem method ToString (line 311) | public override String ToString() method txtSeriesName_TextChanged (line 317) | private void txtSeriesName_TextChanged(object sender, EventArgs e) method txtDataValue_TextChanged (line 331) | private void txtDataValue_TextChanged(object sender, EventArgs e) method txtLabelValue_TextChanged (line 339) | private void txtLabelValue_TextChanged(object sender, EventArgs e) method lbDataSeries_SelectedIndexChanged (line 347) | private void lbDataSeries_SelectedIndexChanged(object sender, EventArg... method cbPlotType_SelectedIndexChanged (line 374) | private void cbPlotType_SelectedIndexChanged(object sender, EventArgs e) method chkLeft_CheckedChanged (line 382) | private void chkLeft_CheckedChanged(object sender, EventArgs e) method btnDown_Click (line 394) | private void btnDown_Click(object sender, EventArgs e) method btnUp_Click (line 405) | private void btnUp_Click(object sender, EventArgs e) method txtX_TextChanged (line 416) | private void txtX_TextChanged(object sender, EventArgs e) FILE: RdlDesign/StaticSeriesCtl.Designer.cs class StaticSeriesCtl (line 3) | partial class StaticSeriesCtl method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: RdlDesign/StaticSeriesCtl.cs class StaticSeriesCtl (line 17) | public partial class StaticSeriesCtl : UserControl, IProperty method StaticSeriesCtl (line 24) | internal StaticSeriesCtl(DesignXmlDraw dxDraw, List ris) method StaticSeriesCtl (line 32) | public StaticSeriesCtl() method IsValid (line 37) | public bool IsValid() method Apply (line 42) | public void Apply() method FunctionButtonClick (line 76) | private void FunctionButtonClick(Object sender, EventArgs e) method functionBox (line 96) | private void functionBox(TextBox txt) method chkShowLabels_CheckedChanged (line 114) | private void chkShowLabels_CheckedChanged(object sender, EventArgs e) method chkMarker_CheckedChanged (line 123) | private void chkMarker_CheckedChanged(object sender, EventArgs e) method cbLine_SelectedIndexChanged (line 131) | private void cbLine_SelectedIndexChanged(object sender, EventArgs e) method colorPicker1_SelectedIndexChanged (line 139) | private void colorPicker1_SelectedIndexChanged(object sender, EventArg... method InitValues (line 150) | private void InitValues() method btnDel_Click (line 272) | private void btnDel_Click(object sender, EventArgs e) method btnAdd_Click (line 286) | private void btnAdd_Click(object sender, EventArgs e) class SeriesItem (line 302) | private class SeriesItem method ToString (line 315) | public override String ToString() method txtSeriesName_TextChanged (line 321) | private void txtSeriesName_TextChanged(object sender, EventArgs e) method txtDataValue_TextChanged (line 335) | private void txtDataValue_TextChanged(object sender, EventArgs e) method txtLabelValue_TextChanged (line 343) | private void txtLabelValue_TextChanged(object sender, EventArgs e) method lbDataSeries_SelectedIndexChanged (line 351) | private void lbDataSeries_SelectedIndexChanged(object sender, EventArg... method cbPlotType_SelectedIndexChanged (line 387) | private void cbPlotType_SelectedIndexChanged(object sender, EventArgs e) method chkLeft_CheckedChanged (line 395) | private void chkLeft_CheckedChanged(object sender, EventArgs e) method btnDown_Click (line 407) | private void btnDown_Click(object sender, EventArgs e) method btnUp_Click (line 418) | private void btnUp_Click(object sender, EventArgs e) method txtX_TextChanged (line 429) | private void txtX_TextChanged(object sender, EventArgs e) FILE: RdlDesign/StyleBorderCtl.cs class StyleBorderCtl (line 18) | internal class StyleBorderCtl : System.Windows.Forms.UserControl, IProperty method StyleBorderCtl (line 75) | public StyleBorderCtl(DesignXmlDraw dxDraw, string[] names, List reportItems) method InitValues (line 71) | private void InitValues(XmlNode node) method Dispose (line 108) | protected override void Dispose( bool disposing ) method InitializeComponent (line 125) | private void InitializeComponent() method IsValid (line 405) | public bool IsValid() method Apply (line 442) | public void Apply() method bFont_Click (line 457) | private void bFont_Click(object sender, System.EventArgs e) method bColor_Click (line 468) | private void bColor_Click(object sender, System.EventArgs e) method cbBackColor_SelectedIndexChanged (line 488) | private void cbBackColor_SelectedIndexChanged(object sender, System.Ev... method cbGradient_SelectedIndexChanged (line 493) | private void cbGradient_SelectedIndexChanged(object sender, System.Eve... method cbEndColor_SelectedIndexChanged (line 498) | private void cbEndColor_SelectedIndexChanged(object sender, System.Eve... method tbPadLeft_TextChanged (line 503) | private void tbPadLeft_TextChanged(object sender, System.EventArgs e) method tbPadRight_TextChanged (line 508) | private void tbPadRight_TextChanged(object sender, System.EventArgs e) method tbPadTop_TextChanged (line 513) | private void tbPadTop_TextChanged(object sender, System.EventArgs e) method tbPadBottom_TextChanged (line 518) | private void tbPadBottom_TextChanged(object sender, System.EventArgs e) method ApplyChanges (line 523) | private void ApplyChanges(XmlNode rNode) method cbDEOutput_SelectedIndexChanged (line 547) | private void cbDEOutput_SelectedIndexChanged(object sender, System.Eve... method tbDEName_TextChanged (line 552) | private void tbDEName_TextChanged(object sender, System.EventArgs e) method bExpr_Click (line 556) | private void bExpr_Click(object sender, System.EventArgs e) FILE: RdlDesign/StyleTextCtl.cs class StyleTextCtl (line 15) | internal class StyleTextCtl : System.Windows.Forms.UserControl, IProperty method StyleTextCtl (line 67) | internal StyleTextCtl(DesignXmlDraw dxDraw, List styles, Prop... method MyDialog_Shown (line 79) | private void MyDialog_Shown(object sender, EventArgs e) method InitTextStyles (line 84) | private void InitTextStyles() method Dispose (line 222) | protected override void Dispose( bool disposing ) method InitializeComponent (line 239) | private void InitializeComponent() method IsValid (line 657) | public bool IsValid() method Apply (line 676) | public void Apply() method ApplyChanges (line 691) | public void ApplyChanges(XmlNode node) method bFont_Click (line 748) | private void bFont_Click(object sender, System.EventArgs e) method bColor_Click (line 822) | private void bColor_Click(object sender, System.EventArgs e) method cbValue_TextChanged (line 843) | private void cbValue_TextChanged(object sender, System.EventArgs e) method cbFontFamily_TextChanged (line 848) | private void cbFontFamily_TextChanged(object sender, System.EventArgs e) method cbFontSize_TextChanged (line 853) | private void cbFontSize_TextChanged(object sender, System.EventArgs e) method cbFontStyle_TextChanged (line 858) | private void cbFontStyle_TextChanged(object sender, System.EventArgs e) method cbFontWeight_TextChanged (line 863) | private void cbFontWeight_TextChanged(object sender, System.EventArgs e) method cbColor_TextChanged (line 868) | private void cbColor_TextChanged(object sender, System.EventArgs e) method cbTextDecoration_TextChanged (line 873) | private void cbTextDecoration_TextChanged(object sender, System.EventA... method cbHorzAlign_TextChanged (line 878) | private void cbHorzAlign_TextChanged(object sender, System.EventArgs e) method cbVerticalAlign_TextChanged (line 883) | private void cbVerticalAlign_TextChanged(object sender, System.EventAr... method cbDirection_TextChanged (line 888) | private void cbDirection_TextChanged(object sender, System.EventArgs e) method cbWritingMode_TextChanged (line 893) | private void cbWritingMode_TextChanged(object sender, System.EventArgs e) method cbFormat_TextChanged (line 898) | private void cbFormat_TextChanged(object sender, System.EventArgs e) method bExpr_Click (line 903) | private void bExpr_Click(object sender, System.EventArgs e) FILE: RdlDesign/SubreportCtl.cs class SubreportCtl (line 20) | internal class SubreportCtl : System.Windows.Forms.UserControl, IProperty method SubreportCtl (line 38) | internal SubreportCtl(DesignXmlDraw dxDraw, XmlNode subReport) method InitValues (line 49) | private void InitValues() method Dispose (line 90) | protected override void Dispose( bool disposing ) method InitializeComponent (line 107) | private void InitializeComponent() method IsValid (line 184) | public bool IsValid() method Apply (line 192) | public void Apply() method bFile_Click (line 225) | private void bFile_Click(object sender, System.EventArgs e) method bRefreshParms_Click (line 246) | private async void bRefreshParms_Click(object sender, System.EventArgs e) method GetSource (line 278) | private string GetSource(string file) method GetReport (line 300) | private async Task GetReport(string prog, string file) FILE: RdlDesign/Syntax/RdlScriptLexer.cs class RdlScriptLexer (line 10) | public class RdlScriptLexer type Style (line 12) | public enum Style type LexerState (line 29) | enum LexerState{ type IdentiferType (line 38) | enum IdentiferType method StyleText (line 53) | public void StyleText(Scintilla scintilla, int startPos, int endPos) method RdlScriptLexer (line 298) | public RdlScriptLexer() method SetParameters (line 342) | public void SetParameters(IEnumerable parametersList) method SetFields (line 347) | public void SetFields(IEnumerable fieldsList) method BuildMethods (line 352) | void BuildMethods(List ar, Type ft) FILE: RdlDesign/Syntax/ScintillaExprStyle.cs class ScintillaExprStyle (line 11) | public class ScintillaExprStyle method ScintillaExprStyle (line 16) | public ScintillaExprStyle(RdlScriptLexer rdlLexer, Scintilla scintilla) method ConfigureScintillaStyle (line 22) | public void ConfigureScintillaStyle() method scintilla_StyleNeeded (line 48) | void scintilla_StyleNeeded(object sender, StyleNeededEventArgs e) FILE: RdlDesign/Syntax/ScintillaSqlStyle.cs class ScintillaSqlStyle (line 6) | public class ScintillaSqlStyle method ScintillaSqlStyle (line 9) | public ScintillaSqlStyle(Scintilla scintilla) method IsBrace (line 80) | private static bool IsBrace(int c) method scintilla_UpdateUI (line 100) | private void scintilla_UpdateUI(object sender, UpdateUIEventArgs e) FILE: RdlDesign/Syntax/ScintillaXMLStyle.cs class ScintillaXMLStyle (line 6) | public static class ScintillaXMLStyle method ConfigureScintillaStyle (line 8) | public static void ConfigureScintillaStyle(ScintillaNET.Scintilla scin... FILE: RdlDesign/TableColumnCtl.cs class TableColumnCtl (line 17) | internal class TableColumnCtl : System.Windows.Forms.UserControl, IProperty method TableColumnCtl (line 38) | public TableColumnCtl(DesignXmlDraw dxDraw, XmlNode tc) method InitValues (line 49) | private void InitValues(XmlNode node) method Dispose (line 80) | protected override void Dispose( bool disposing ) method InitializeComponent (line 97) | private void InitializeComponent() method IsValid (line 194) | public bool IsValid() method Apply (line 234) | public void Apply() method ApplyChanges (line 247) | private void ApplyChanges(XmlNode rNode) method tbHidden_TextChanged (line 278) | private void tbHidden_TextChanged(object sender, System.EventArgs e) method tbWidth_TextChanged (line 283) | private void tbWidth_TextChanged(object sender, System.EventArgs e) method cbToggle_SelectedIndexChanged (line 288) | private void cbToggle_SelectedIndexChanged(object sender, System.Event... method bExpr_Click (line 293) | private void bExpr_Click(object sender, System.EventArgs e) method cbFixedHeader_CheckedChanged (line 318) | private void cbFixedHeader_CheckedChanged(object sender, System.EventA... FILE: RdlDesign/TableCtl.cs class TableCtl (line 17) | internal class TableCtl : System.Windows.Forms.UserControl, IProperty method TableCtl (line 48) | public TableCtl(DesignXmlDraw dxDraw, List ris) method InitValues (line 59) | private void InitValues() method Dispose (line 102) | protected override void Dispose( bool disposing ) method InitializeComponent (line 119) | private void InitializeComponent() method IsValid (line 292) | public bool IsValid() method Apply (line 302) | public void Apply() method ApplyChanges (line 318) | public void ApplyChanges(XmlNode node) method CreateTableRow (line 361) | private void CreateTableRow(XmlNode tblNode, string elementName, bool ... method cbDataSet_SelectedIndexChanged (line 378) | private void cbDataSet_SelectedIndexChanged(object sender, System.Even... method chkPBBefore_CheckedChanged (line 383) | private void chkPBBefore_CheckedChanged(object sender, System.EventArg... method chkPBAfter_CheckedChanged (line 388) | private void chkPBAfter_CheckedChanged(object sender, System.EventArgs e) method tbNoRows_TextChanged (line 393) | private void tbNoRows_TextChanged(object sender, System.EventArgs e) method chkRows_CheckedChanged (line 398) | private void chkRows_CheckedChanged(object sender, System.EventArgs e) method chkRenderDetails_CheckedChanged (line 405) | private void chkRenderDetails_CheckedChanged(object sender, System.Eve... method tbDetailElementName_TextChanged (line 410) | private void tbDetailElementName_TextChanged(object sender, System.Eve... method tbDetailCollectionName_TextChanged (line 415) | private void tbDetailCollectionName_TextChanged(object sender, System.... FILE: RdlDesign/TableRowCtl.cs class TableRowCtl (line 17) | internal class TableRowCtl : System.Windows.Forms.UserControl, IProperty method TableRowCtl (line 36) | internal TableRowCtl(DesignXmlDraw dxDraw, XmlNode tr) method InitValues (line 47) | private void InitValues(XmlNode node) method Dispose (line 76) | protected override void Dispose( bool disposing ) method InitializeComponent (line 93) | private void InitializeComponent() method IsValid (line 175) | public bool IsValid() method Apply (line 215) | public void Apply() method ApplyChanges (line 228) | private void ApplyChanges(XmlNode rNode) method tbHidden_TextChanged (line 251) | private void tbHidden_TextChanged(object sender, System.EventArgs e) method tbRowHeight_TextChanged (line 256) | private void tbRowHeight_TextChanged(object sender, System.EventArgs e) method cbToggle_SelectedIndexChanged (line 261) | private void cbToggle_SelectedIndexChanged(object sender, System.Event... method bExpr_Click (line 266) | private void bExpr_Click(object sender, System.EventArgs e) FILE: RdlDesign/ToolStripUserZoomControl.cs class ToolStripUserZoomControl (line 8) | public class ToolStripUserZoomControl : ToolStripControlHost method ToolStripUserZoomControl (line 11) | public ToolStripUserZoomControl() : base(new UserZoomControl()) { } method OnSubscribeControlEvents (line 26) | protected override void OnSubscribeControlEvents(Control c) method OnUnsubscribeControlEvents (line 35) | protected override void OnUnsubscribeControlEvents(Control c) method ZoomControl1_ValueChanged (line 46) | private void ZoomControl1_ValueChanged(object sender, UserZoomControl.... FILE: RdlDesign/Undo.cs class Undo (line 11) | internal class Undo method Undo (line 21) | internal Undo(XmlDocument doc, int levels) method Reset (line 57) | internal void Reset() method NodeChanging (line 68) | private void NodeChanging(object sender, XmlNodeChangedEventArgs e) method NodeChanged (line 89) | private void NodeChanged(object sender, XmlNodeChangedEventArgs e) method undo (line 129) | internal void undo() method StartUndoGroup (line 142) | internal void StartUndoGroup(String description) method EndUndoGroup (line 149) | internal void EndUndoGroup() method EndUndoGroup (line 154) | internal void EndUndoGroup(bool keepChanges) type UndoItem (line 171) | internal interface UndoItem method Undo (line 173) | void Undo(); method GetDescription (line 174) | String GetDescription(); class NodeInsertedUndo (line 177) | internal class NodeInsertedUndo : UndoItem method NodeInsertedUndo (line 181) | public NodeInsertedUndo(XmlNodeChangedEventArgs e, object previous) method Undo (line 186) | public void Undo() method GetDescription (line 196) | public String GetDescription() method PreviousState (line 201) | static internal object PreviousState(XmlNodeChangedEventArgs e) class NodeRemovedUndo (line 207) | internal class NodeRemovedUndo : UndoItem method NodeRemovedUndo (line 213) | internal NodeRemovedUndo(XmlNodeChangedEventArgs e, object previous) method Undo (line 220) | public void Undo() method GetDescription (line 225) | public String GetDescription() method PreviousState (line 230) | static internal object PreviousState(XmlNodeChangedEventArgs e) class NodeChangedUndo (line 240) | internal class NodeChangedUndo : UndoItem method NodeChangedUndo (line 245) | internal NodeChangedUndo(XmlNodeChangedEventArgs e, object pValue) method Undo (line 251) | public void Undo() method GetDescription (line 256) | public String GetDescription() method PreviousState (line 261) | static internal object PreviousState(XmlNodeChangedEventArgs e) class UndoGroup (line 271) | internal class UndoGroup : UndoItem method UndoGroup (line 277) | internal UndoGroup(Undo undo, String description) method AddUndoItem (line 283) | internal void AddUndoItem(UndoItem ui) method Undo (line 293) | public void Undo() method GetDescription (line 304) | public String GetDescription() FILE: RdlDesign/UserZoomControl.Designer.cs class UserZoomControl (line 3) | partial class UserZoomControl method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: RdlDesign/UserZoomControl.cs class UserZoomControl (line 14) | public partial class UserZoomControl : UserControl method UserZoomControl (line 29) | public UserZoomControl() method FireValueChanged (line 93) | protected void FireValueChanged() method BtnMinus_Click (line 110) | private void BtnMinus_Click(object sender, EventArgs e) method BtnPlus_Click (line 117) | private void BtnPlus_Click(object sender, EventArgs e) class CambiaValori (line 129) | public class CambiaValori : EventArgs FILE: RdlDesign/VisibilityCtl.cs class VisibilityCtl (line 17) | internal class VisibilityCtl : System.Windows.Forms.UserControl, IProperty method VisibilityCtl (line 34) | internal VisibilityCtl(DesignXmlDraw dxDraw, List reportItems) method InitValues (line 45) | private void InitValues(XmlNode node) method Dispose (line 74) | protected override void Dispose( bool disposing ) method InitializeComponent (line 91) | private void InitializeComponent() method IsValid (line 157) | public bool IsValid() method Apply (line 162) | public void Apply() method ApplyChanges (line 176) | private void ApplyChanges(XmlNode rNode) method tbHidden_TextChanged (line 194) | private void tbHidden_TextChanged(object sender, System.EventArgs e) method cbToggle_SelectedIndexChanged (line 199) | private void cbToggle_SelectedIndexChanged(object sender, System.Event... method bExpr_Click (line 204) | private void bExpr_Click(object sender, System.EventArgs e) FILE: RdlDesktop/BackgroundThread.cs class BackgroundThread (line 11) | class BackgroundThread method BackgroundThread (line 19) | public BackgroundThread (RdlDesktop rws, int checkSeconds, int fileSec... method HandleBackground (line 33) | public void HandleBackground() FILE: RdlDesktop/ConnectionThread.cs class ConnectionThread (line 17) | class ConnectionThread method ConnectionThread (line 30) | public ConnectionThread(RdlDesktop rs, TcpListener l, string sr, strin... method AccumTimeSpan (line 38) | private void AccumTimeSpan(TimeSpan ts) method ClearStatistics (line 44) | static public void ClearStatistics() method GetTotalRequestTime (line 53) | static public double GetTotalRequestTime() method GetConnectionCount (line 58) | static public int GetConnectionCount() method GetPeakConnectionCount (line 63) | static public int GetPeakConnectionCount() method GetRequestCount (line 68) | static public int GetRequestCount() method ProcessDirectory (line 79) | public async Task ProcessDirectory(string directory) method ProcessReportFile (line 167) | private async Task<(byte[] Report, string MimeType)> ProcessReportFile... method ProcessReportGetParms (line 323) | private ListDictionary ProcessReportGetParms(string parms) method ProcessReportGetSource (line 345) | private bool ProcessReportGetSource(string file, out string source) method ProcessReportCompile (line 368) | private async Task<(Report Report, string Msgs)> ProcessReportCompile(... method GetPassword (line 413) | private string GetPassword() method GetMimeType (line 423) | private string GetMimeType(string file) method SendHeader (line 444) | public void SendHeader(string sHttpVersion, string sMIMEHeader, int iT... method SendToBrowser (line 477) | public void SendToBrowser(String sData, ref Socket mySocket) method SendToBrowser (line 487) | public void SendToBrowser(Byte[] bSendData, ref Socket mySocket) method HandleConnection (line 515) | public async Task HandleConnection() method UnescapeRequest (line 701) | string UnescapeRequest(string req) FILE: RdlDesktop/ConsoleThread.cs class ConsoleThread (line 11) | class ConsoleThread method ConsoleThread (line 16) | public ConsoleThread (RdlDesktop rws, BackgroundThread bk) method HandleConsole (line 22) | public void HandleConsole() FILE: RdlDesktop/FileCache.cs class FileCache (line 9) | class FileCache method FileCache (line 15) | public FileCache () method Add (line 29) | public IList Add(string url, IList files) method Find (line 71) | public IList Find(string url) method Find (line 76) | public IList Find(string url, DateTime lastUpdateTime) method Clear (line 105) | public int Clear(TimeSpan ts) method DeleteUrlEntry (line 127) | private int DeleteUrlEntry(CacheEntry ce) method ClearAll (line 146) | public int ClearAll() class CacheEntry (line 176) | class CacheEntry method CacheEntry (line 183) | public CacheEntry(string url, IList files) FILE: RdlDesktop/FileReadCache.cs class FileReadCache (line 10) | class FileReadCache method FileReadCache (line 18) | public FileReadCache (int maxCount, int maxEntrySize) method Read (line 27) | public byte[] Read(string file) method ReadString (line 82) | public string ReadString(string file) method Clear (line 102) | public int Clear(TimeSpan ts) method ClearAll (line 126) | public int ClearAll() method Reduce (line 141) | private int Reduce() class CacheReadEntry (line 159) | class CacheReadEntry : IComparable method CacheReadEntry (line 166) | public CacheReadEntry(string file, byte[] ba) method CompareTo (line 196) | public int CompareTo(object obj) FILE: RdlDesktop/RdlDesktop.cs class RdlDesktop (line 16) | class RdlDesktop method RdlDesktop (line 34) | public RdlDesktop() method RunServer (line 77) | public void RunServer() method Main (line 130) | public static void Main(string[] args) method GetConfigInfo (line 152) | private void GetConfigInfo() method HandleArguments (line 254) | private void HandleArguments(string[] args) method GetConfigInfoMimes (line 285) | private void GetConfigInfoMimes(XmlNode xNode) FILE: RdlDesktop/ReportRender.cs class ReportRender (line 13) | internal class ReportRender method ReportRender (line 19) | internal ReportRender(Report r) method MainHtml (line 34) | internal string MainHtml(Report report, string parmUrl, string renderUrl) method ParameterHtml (line 51) | internal string ParameterHtml(IDictionary pd) FILE: RdlDesktop/Resources/Strings.Designer.cs class Strings (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Strings (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlEngine/Definition/Action.cs class Action (line 12) | [Serializable] method Action (line 29) | internal Action(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 58) | async override internal Task FinalPass() method HyperLinkValue (line 75) | internal async Task HyperLinkValue(Report rpt, Row r) method BookmarkLinkValue (line 95) | internal async Task BookmarkLinkValue(Report rpt, Row r) FILE: RdlEngine/Definition/Axis.cs class Axis (line 10) | [Serializable] method Axis (line 58) | internal Axis(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 160) | async override internal Task FinalPass() method MaxEval (line 286) | internal async Task MaxEval(Report r, Row row) method MinEval (line 293) | internal async Task MinEval(Report r, Row row) FILE: RdlEngine/Definition/AxisTickMarks.cs type AxisTickMarksEnum (line 8) | public enum AxisTickMarksEnum class AxisTickMarks (line 16) | public class AxisTickMarks method GetStyle (line 18) | static public AxisTickMarksEnum GetStyle(string s) method GetStyle (line 23) | static internal AxisTickMarksEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/Body.cs class Body (line 13) | [Serializable] method Body (line 24) | internal Body(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 64) | async override internal Task FinalPass() method Run (line 73) | internal async Task Run(IPresent ip, Row row) method RunPage (line 84) | internal async Task RunPage(Pages pgs) method GetCurrentColumn (line 116) | internal int GetCurrentColumn(Report rpt) method IncrCurrentColumn (line 122) | internal int IncrCurrentColumn(Report rpt) method SetCurrentColumn (line 134) | internal void SetCurrentColumn(Report rpt, int col) method RemoveWC (line 161) | internal void RemoveWC(Report rpt) FILE: RdlEngine/Definition/CategoryAxis.cs class CategoryAxis (line 10) | [Serializable] method CategoryAxis (line 15) | internal CategoryAxis(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 37) | async override internal Task FinalPass() FILE: RdlEngine/Definition/CategoryGrouping.cs class CategoryGrouping (line 12) | [Serializable] method CategoryGrouping (line 20) | internal CategoryGrouping(ReportDefn r, ReportLink p, XmlNode xNode) :... method FinalPass (line 49) | async override internal Task FinalPass() FILE: RdlEngine/Definition/CategoryGroupings.cs class CategoryGroupings (line 13) | [Serializable] method CategoryGroupings (line 18) | internal CategoryGroupings(ReportDefn r, ReportLink p, XmlNode xNode) ... method FinalPass (line 45) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Chart.cs class Chart (line 20) | [Serializable] method Chart (line 50) | internal Chart(ReportDefn r, ReportLink p, XmlNode xNode):base(r, p, x... method FinalPass (line 179) | async override internal Task FinalPass() method Run (line 225) | override internal async Task Run(IPresent ip, Row row) method RunPage (line 256) | override internal async Task RunPage(Pages pgs, Row row) method RunPage_Emf (line 307) | private async Task RunPage_Emf(Pages pgs, Row row, Report rpt, C... method RunPage_Bitmap (line 364) | private async Task RunPage_Bitmap(Pages pgs, Row row, Report rpt... method RunChartBuild (line 428) | async Task RunChartBuild(Report rpt, Row row) method GenerateMatrix (line 473) | private Matrix GenerateMatrix() method CreateChartExpression (line 574) | void CreateChartExpression(XmlDocument mDoc, XmlElement ce, string exp... method GenerateMatrixCategories (line 592) | void GenerateMatrixCategories(XmlDocument mDoc, XmlNode m) method GenerateMatrixSeries (line 680) | void GenerateMatrixSeries(XmlDocument mDoc, XmlNode m) method GetMyData (line 908) | private Rows GetMyData(Report rpt) method SetMyData (line 913) | private void SetMyData(Report rpt, Rows data) FILE: RdlEngine/Definition/ChartBar.cs class ChartBar (line 18) | internal class ChartBar : ChartBase method ChartBar (line 22) | internal ChartBar(Report r, Row row, Chart c, MatrixCellEntry[,] m, Ex... method Draw (line 27) | override internal async Task Draw(Report rpt) FILE: RdlEngine/Definition/ChartBase.cs class ChartBase (line 24) | internal abstract class ChartBase : IDisposable method ChartBase (line 44) | internal ChartBase(Report r, Row row, Chart c, MatrixCellEntry[,] m, E... method Draw (line 65) | internal virtual Task Draw(Report rpt) method Save (line 75) | internal void Save(Report rpt, System.IO.Stream stream, Imaging.ImageF... method Image (line 93) | internal Draw2.Image Image(Report rpt) // GJL 14082008 Using Vector Gr... method CreateSizedBitmap (line 105) | protected Draw2.Bitmap CreateSizedBitmap() method CreateSizedBitmap (line 116) | protected Draw2.Bitmap CreateSizedBitmap(int W, int H) method SeriesBrush (line 152) | protected async Task SeriesBrush(Report rpt, Row row, R... method DrawChartStyle (line 174) | protected async Task DrawChartStyle(Report rpt, Draw2.Graphics g) method DrawLegend (line 192) | protected async Task DrawLegend(Report rpt, Draw2.Gra... method DrawLegendBox (line 509) | void DrawLegendBox(Draw2.Graphics g, Draw2.Brush b, ChartMarkerEnum ma... method DrawLegendBox (line 514) | void DrawLegendBox(Draw2.Graphics g, Draw2.Brush b, ChartMarkerEnum ma... method DrawLegendMarker (line 559) | internal void DrawLegendMarker(Draw2.Graphics g, Draw2.Brush b, Draw2.... method DrawLegendMeasure (line 602) | protected async Task<(Draw2.Size[] sizes, int maxWidth, int maxHeight)... method DrawPlotAreaStyle (line 626) | protected async Task DrawPlotAreaStyle(Report rpt, Draw2.Graphics g, D... method DrawTitle (line 661) | protected async Task DrawTitle(Report rpt, Draw2.Graphics g, Title t, ... method DrawTitleMeasure (line 682) | protected async Task DrawTitleMeasure(Report rpt, Draw2.Gr... method DrawCategoryLabel (line 700) | protected async Task DrawCategoryLabel(Report rpt, Draw2.Graphics g, s... method DrawCategoryTitleMeasure (line 719) | protected async Task DrawCategoryTitleMeasure(Report rpt, ... method GetCategoryValue (line 736) | protected async Task<(object value, TypeCode tc)> GetCategoryValue(Rep... method GetDataValue (line 759) | protected async Task GetDataValue(Report rpt, int row, int col) method GetPlotType (line 766) | protected string GetPlotType(Report rpt, int row, int col) method GetYAxis (line 782) | protected string GetYAxis(Report rpt, int row, int col) method getNoMarkerVal (line 798) | protected bool getNoMarkerVal(Report rpt, int row, int col) method getLineSize (line 812) | protected String getLineSize(Report rpt, int row, int col) method getColour (line 825) | protected String getColour(Report rpt, int row, int col) method GetDataValue (line 836) | protected async Task GetDataValue(Report rpt, int row, int col... method GetDataValueString (line 868) | protected async Task GetDataValueString(Report rpt, int row, i... method GetSeriesBrush (line 889) | protected async Task GetSeriesBrush(Report rpt, int row, ... method DrawDataPoint (line 915) | protected async Task DrawDataPoint(Report rpt, Draw2.Graphics g, Draw2... method DrawDataPoint (line 920) | protected async Task DrawDataPoint(Report rpt, Draw2.Graphics g, Draw2... method DrawDataPoint (line 925) | async Task DrawDataPoint(Report rpt, Draw2.Graphics g, Draw2.Point p, ... method GetSeriesValue (line 981) | protected async Task GetSeriesValue(Report rpt, int iCol) method ShowRightYAxis (line 999) | protected bool ShowRightYAxis(Report rpt) method GetMaxMinDataValue (line 1013) | protected async Task<(double max, double min)> GetMaxMinDataValue(Repo... method GetMaxMinDataValueStacked (line 1058) | async Task<(double max, double min)> GetMaxMinDataValueStacked(Report ... method GetSeriesBrushes (line 1080) | protected async Task GetSeriesBrushes(Report rpt, Row r... method GetSeriesBrushesEarthTones (line 1120) | Draw2.Brush GetSeriesBrushesEarthTones(int i) method GetSeriesBrushesExcel (line 1150) | Draw2.Brush GetSeriesBrushesExcel(int i) method GetSeriesBrushesPatterned (line 1170) | Draw2.Brush GetSeriesBrushesPatterned(int i) method GetSeriesBrushesPatternedBlack (line 1217) | Draw2.Brush GetSeriesBrushesPatternedBlack(int i) method GetSeriesBrushesGrayScale (line 1263) | Draw2.Brush GetSeriesBrushesGrayScale(int i) method GetSeriesBrushesLight (line 1281) | Draw2.Brush GetSeriesBrushesLight(int i) method GetSeriesBrushesPastel (line 1302) | Draw2.Brush GetSeriesBrushesPastel(int i) method GetSeriesMarkers (line 1336) | protected ChartMarkerEnum[] GetSeriesMarkers() method GetValueMaxMin (line 1348) | protected async Task<(double max, double min)> GetValueMaxMin(Report r... method AdjustMargins (line 1458) | protected void AdjustMargins(Draw2.Rectangle legendRect, Report rpt, D... method IsLegendLeft (line 1493) | protected bool IsLegendLeft() method SetIncrementAndInterval (line 1517) | protected async Task<(double incr, int interval)> SetIncrementAndInter... method IsLegendInsidePlotArea (line 1538) | protected bool IsLegendInsidePlotArea() method IsLegendRight (line 1547) | protected bool IsLegendRight() method IsLegendTop (line 1570) | protected bool IsLegendTop() method IsLegendBottom (line 1593) | protected bool IsLegendBottom() method FirstChartRow (line 1616) | private Row FirstChartRow(Report rpt) method Dispose (line 1628) | public void Dispose() FILE: RdlEngine/Definition/ChartBubble.cs class ChartBubble (line 19) | [Serializable] method ChartBubble (line 23) | internal ChartBubble(Report r, Row row, Chart c, MatrixCellEntry[,] m,... method Draw (line 28) | override internal async Task Draw(Report rpt) FILE: RdlEngine/Definition/ChartColumn.cs class ChartColumn (line 25) | internal class ChartColumn : ChartBase method ChartColumn (line 29) | internal ChartColumn(Report r, Row row, Chart c, MatrixCellEntry[,] m,... method Draw (line 34) | override internal async Task Draw(Report rpt) FILE: RdlEngine/Definition/ChartData.cs class ChartData (line 12) | [Serializable] method ChartData (line 17) | internal ChartData(ReportDefn r, ReportLink p, XmlNode xNode) : base(r... method FinalPass (line 46) | async override internal Task FinalPass() FILE: RdlEngine/Definition/ChartElementOutput.cs type ChartElementOutputEnum (line 8) | internal enum ChartElementOutputEnum class ChartElementOutput (line 14) | internal class ChartElementOutput method GetStyle (line 16) | static internal ChartElementOutputEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/ChartExpression.cs class ChartExpression (line 12) | [Serializable] method ChartExpression (line 25) | internal ChartExpression(ReportDefn r, ReportLink p, XmlNode xNode):ba... method FinalPass (line 81) | async override internal Task FinalPass() method Run (line 103) | override internal Task Run(IPresent ip, Row row) FILE: RdlEngine/Definition/ChartGridLines.cs class ChartGridLines (line 10) | [Serializable] method ChartGridLines (line 16) | internal ChartGridLines(ReportDefn r, ReportLink p, XmlNode xNode) : b... method FinalPass (line 44) | async override internal Task FinalPass() FILE: RdlEngine/Definition/ChartLayout.cs class ChartLayout (line 16) | internal class ChartLayout method ChartLayout (line 26) | internal ChartLayout(int width, int height) FILE: RdlEngine/Definition/ChartLine.cs class ChartLine (line 19) | [Serializable] method ChartLine (line 23) | internal ChartLine(Report r, Row row, Chart c, MatrixCellEntry[,] m, E... method Draw (line 28) | override internal async Task Draw(Report rpt) FILE: RdlEngine/Definition/ChartMap.cs class ChartMap (line 26) | internal class ChartMap: ChartBase method ChartMap (line 29) | internal ChartMap(Report r, Row row, Chart c, MatrixCellEntry[,] m, Ex... method Draw (line 34) | override internal async Task Draw(Report rpt) method DrawMap (line 96) | private async Task DrawMap(Report rpt, Draw2.Graphics g, string mapfil... FILE: RdlEngine/Definition/ChartMapData.cs class MapData (line 18) | internal class MapData method MapData (line 31) | internal MapData(XmlReader xr) method ReadXmlMapData (line 39) | private void ReadXmlMapData(XmlReader xr) method ReadXmlLines (line 64) | private void ReadXmlLines(XmlReader xr) method ReadXmlPoints (line 88) | private Draw2.PointF[] ReadXmlPoints(XmlReader xr) method ReadXmlPolygon (line 101) | private void ReadXmlPolygon(XmlReader xr) method ReadXmlKeys (line 134) | private string[] ReadXmlKeys(XmlReader xr) method ReadXmlColor (line 141) | private Draw2.Color ReadXmlColor(XmlReader xr) method ReadXmlText (line 147) | private void ReadXmlText(XmlReader xr) method Create (line 232) | static internal MapData Create(string file) method MapData (line 268) | internal MapData() method AddMapObject (line 321) | internal void AddMapObject(MapObject mo) method AddPolygon (line 328) | internal void AddPolygon(Draw2.PointF[] polygon, string[] entries) method AddPolygon (line 333) | internal void AddPolygon(Draw2.PointF[] polygon, string[] entries, Dra... method GetPolygon (line 357) | internal List GetPolygon(string key) method GetScale (line 365) | internal float GetScale(float width, float height) class MapObject (line 386) | internal abstract class MapObject method Draw (line 390) | internal abstract void Draw(Draw2.Graphics g, float scale, float offX,... class MapLines (line 393) | internal class MapLines : MapObject method MapLines (line 399) | internal MapLines(Draw2.PointF[] lines) : base() method Draw (line 424) | internal override void Draw(Draw2.Graphics g, float scale, float offX,... class MapPolygon (line 437) | internal class MapPolygon : MapObject method MapPolygon (line 443) | internal MapPolygon(Draw2.PointF[] poly) : base() method Draw (line 483) | internal override void Draw(Draw2.Graphics g, float scale, float offX,... class MapText (line 503) | internal class MapText : MapObject method MapText (line 514) | internal MapText(string val, Draw2.PointF xy) : base() method GetFont (line 538) | internal Draw2.Font GetFont(float scale) method Draw (line 564) | internal override void Draw(Draw2.Graphics g, float scale, float offX,... FILE: RdlEngine/Definition/ChartPalette.cs type ChartPaletteEnum (line 9) | internal enum ChartPaletteEnum class ChartPalette (line 23) | internal class ChartPalette method GetStyle (line 25) | static internal ChartPaletteEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/ChartPie.cs class ChartPie (line 19) | internal class ChartPie: ChartBase method ChartPie (line 22) | internal ChartPie(Report r, Row row, Chart c, MatrixCellEntry[,] m, Ex... method Draw (line 27) | override internal async Task Draw(Report rpt) method DrawPlotAreaDoughnut (line 90) | async Task DrawPlotAreaDoughnut(Report rpt, Draw2.Graphics g) method DrawPlotAreaPie (line 148) | async Task DrawPlotAreaPie(Report rpt, Draw2.Graphics g) method CategoryAxisSize (line 206) | protected async Task CategoryAxisSize(Report rpt, Draw2.Gr... method DrawCategoryAxis (line 246) | protected async Task DrawCategoryAxis(Report rpt, Draw2.Graphics g, Dr... method DrawPie (line 280) | async Task DrawPie(Draw2.Graphics g, Report rpt, Draw2.Brush brush, Dr... FILE: RdlEngine/Definition/ChartSeries.cs class ChartSeries (line 12) | [Serializable] method ChartSeries (line 25) | internal ChartSeries(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 73) | async override internal Task FinalPass() FILE: RdlEngine/Definition/ChartSubType.cs type ChartSubTypeEnum (line 9) | internal enum ChartSubTypeEnum class ChartSubType (line 23) | internal class ChartSubType method GetStyle (line 25) | static internal ChartSubTypeEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/ChartType.cs type ChartTypeEnum (line 9) | internal enum ChartTypeEnum type ChartMarkerEnum (line 24) | internal enum ChartMarkerEnum // used for line point markers class ChartType (line 38) | internal class ChartType method GetStyle (line 40) | static internal ChartTypeEnum GetStyle(string s) FILE: RdlEngine/Definition/Classes.cs class Classes (line 16) | [Serializable] method Classes (line 21) | internal Classes(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 54) | async override internal Task FinalPass() method Load (line 63) | internal void Load(Report rpt) method GetEnumerator (line 78) | public IEnumerator GetEnumerator() FILE: RdlEngine/Definition/Code.cs class Code (line 23) | [Serializable] method Code (line 30) | internal Code(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 36) | override internal Task FinalPass() method GetAssembly (line 41) | private Assembly GetAssembly() method CodeType (line 157) | internal Type CodeType() method Load (line 176) | internal object Load(Report rpt) method Instance (line 222) | internal object Instance(Report rpt) method GetWC (line 227) | private WorkClass GetWC(Report rpt) method RemoveWC (line 241) | private void RemoveWC(Report rpt) class WorkClass (line 246) | class WorkClass method WorkClass (line 250) | internal WorkClass() class CodeReport (line 264) | public class CodeReport method CodeReport (line 270) | public CodeReport(Report report) class CodeParameters (line 305) | public class CodeParameters method CodeParameters (line 309) | public CodeParameters(Report report) class CodeUser (line 333) | public class CodeUser method CodeUser (line 337) | public CodeUser(Report report) class CodeGlobals (line 376) | public class CodeGlobals method CodeGlobals (line 380) | public CodeGlobals(Report report) FILE: RdlEngine/Definition/CodeModule.cs class CodeModule (line 13) | [Serializable] method CodeModule (line 20) | internal CodeModule(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method LoadedAssembly (line 32) | internal Assembly LoadedAssembly() method FinalPass (line 53) | override internal Task FinalPass() FILE: RdlEngine/Definition/CodeModules.cs class CodeModules (line 16) | [Serializable] method CodeModules (line 21) | internal CodeModules(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 79) | async override internal Task FinalPass() method LoadModules (line 88) | internal void LoadModules() method GetEnumerator (line 103) | public IEnumerator GetEnumerator() FILE: RdlEngine/Definition/ColumnGrouping.cs class ColumnGrouping (line 12) | [Serializable] method ColumnGrouping (line 19) | internal ColumnGrouping(ReportDefn r, ReportLink p, XmlNode xNode) : b... method FinalPass (line 53) | async override internal Task FinalPass() FILE: RdlEngine/Definition/ColumnGroupings.cs class ColumnGroupings (line 13) | [Serializable] method ColumnGroupings (line 19) | internal ColumnGroupings(ReportDefn r, ReportLink p, XmlNode xNode) : ... method FinalPass (line 51) | async override internal Task FinalPass() method DefnHeight (line 60) | internal float DefnHeight() method GetStaticCount (line 73) | private int GetStaticCount() method GetME (line 97) | internal MatrixEntry GetME(Report rpt) method SetME (line 103) | internal void SetME(Report rpt, MatrixEntry me) method GetWC (line 109) | private WorkClass GetWC(Report rpt) method RemoveWC (line 123) | private void RemoveWC(Report rpt) class WorkClass (line 128) | class WorkClass method WorkClass (line 131) | internal WorkClass() FILE: RdlEngine/Definition/ConnectionProperties.cs class ConnectionProperties (line 12) | [Serializable] method ConnectionProperties (line 24) | internal ConnectionProperties(ReportDefn r, ReportLink p, XmlNode xNod... method FinalPass (line 64) | async override internal Task FinalPass() method Connectstring (line 77) | internal async Task Connectstring(Report rpt) FILE: RdlEngine/Definition/Corner.cs class Corner (line 12) | [Serializable] method Corner (line 21) | internal Corner(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 43) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Custom.cs class Custom (line 20) | [Serializable] method Custom (line 35) | internal Custom(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 47) | override internal Task FinalPass() FILE: RdlEngine/Definition/CustomReportItem.cs class CustomReportItem (line 26) | [Serializable] method CustomReportItem (line 36) | internal CustomReportItem(ReportDefn r, ReportLink p, XmlNode xNode):b... method FinalPass (line 89) | async override internal Task FinalPass() method Run (line 125) | override internal async Task Run(IPresent ip, Row row) method GetCriType (line 181) | private async Task GetCriType(Row row, Report rpt) method RunPage (line 191) | override internal async Task RunPage(Pages pgs, Row row) method GenerateImage (line 245) | byte[] GenerateImage(ImageCodecInfo codec, Draw2.Imaging.EncoderParame... method SetProperties (line 258) | async Task SetProperties(Report rpt, Row row, ICustomReportItem cri) method CustomProperties (line 284) | List CustomProperties(XmlNode xNode) method CustomProperty (line 306) | CustomProperty CustomProperty(XmlNode xNode) class CustomProperty (line 336) | class CustomProperty method CustomProperty (line 340) | internal CustomProperty(Expression name, Expression val) FILE: RdlEngine/Definition/DataElementOutput.cs type DataElementOutputEnum (line 11) | public enum DataElementOutputEnum class DataElementOutput (line 25) | public class DataElementOutput method GetStyle (line 27) | static public DataElementOutputEnum GetStyle(string s) method GetStyle (line 32) | static internal DataElementOutputEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/DataElementStyle.cs class DataElementStyle (line 11) | public class DataElementStyle method GetStyle (line 13) | static public DataElementStyleEnum GetStyle(string s) method GetStyle (line 17) | static internal DataElementStyleEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/DataElementStyleEnum.cs type DataElementStyleEnum (line 11) | public enum DataElementStyleEnum FILE: RdlEngine/Definition/DataInstanceElementOutput.cs type DataInstanceElementOutputEnum (line 11) | public enum DataInstanceElementOutputEnum class DataInstanceElementOutput (line 17) | public class DataInstanceElementOutput method GetStyle (line 19) | static public DataInstanceElementOutputEnum GetStyle(string s) method GetStyle (line 23) | static internal DataInstanceElementOutputEnum GetStyle(string s, Repor... FILE: RdlEngine/Definition/DataLabel.cs class DataLabel (line 12) | [Serializable] method DataLabel (line 24) | internal DataLabel(ReportDefn r, ReportLink p, XmlNode xNode) : base(r... method FinalPass (line 63) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DataLabelPosition.cs type DataLabelPositionEnum (line 9) | internal enum DataLabelPositionEnum class DataLabelPosition (line 23) | internal class DataLabelPosition method GetStyle (line 25) | static internal DataLabelPositionEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/DataPoint.cs class DataPoint (line 12) | [Serializable] method DataPoint (line 31) | internal DataPoint(ReportDefn r, ReportLink p, XmlNode xNode) : base(r... method FinalPass (line 79) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DataPoints.cs class DataPoints (line 13) | [Serializable] method DataPoints (line 18) | internal DataPoints(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method FinalPass (line 47) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DataRegion.cs class DataRegion (line 16) | [Serializable] method DataRegion (line 47) | internal DataRegion(ReportDefn r, ReportLink p, XmlNode xNode):base(r,... method DataRegionElement (line 60) | internal bool DataRegionElement(XmlNode xNodeLoop) method FinalPass (line 95) | async override internal Task FinalPass() method ResolveNestedDataRegions (line 150) | void ResolveNestedDataRegions() method Run (line 165) | async override internal Task Run(IPresent ip, Row row) method RunPageRegionBegin (line 170) | internal void RunPageRegionBegin(Pages pgs) method RunPageRegionEnd (line 179) | internal void RunPageRegionEnd(Pages pgs) method AnyRows (line 188) | internal async Task AnyRows(IPresent ip, Rows data) method AnyRowsPage (line 205) | internal async Task AnyRowsPage(Pages pgs, Rows data) method GetFilteredData (line 238) | internal async Task GetFilteredData(Report rpt, Row row) method GetNestedData (line 291) | Rows GetNestedData(Report rpt, Row row) method DataRegionFinish (line 330) | internal void DataRegionFinish() FILE: RdlEngine/Definition/DataSetDefn.cs class DataSetDefn (line 17) | [Serializable] method DataSetDefn (line 62) | internal DataSetDefn(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 140) | async override internal Task FinalPass() method AddHideDuplicates (line 151) | internal void AddHideDuplicates(Textbox tb) method GetData (line 158) | internal async Task GetData(Report rpt) method GetDataFile (line 184) | private async Task GetDataFile(Report rpt, string file) method SetData (line 227) | internal async Task SetData(Report rpt, IDataReader dr) method SetData (line 232) | internal async Task SetData(Report rpt, DataTable dt) method SetData (line 237) | internal async Task SetData(Report rpt, XmlDocument xmlDoc) method SetData (line 242) | internal async Task SetData(Report rpt, IEnumerable ie) method ResetHideDuplicates (line 247) | internal void ResetHideDuplicates(Report rpt) FILE: RdlEngine/Definition/DataSetReference.cs class DataSetReference (line 12) | [Serializable] method DataSetReference (line 24) | internal DataSetReference(ReportDefn r, ReportLink p, XmlNode xNode) :... method FinalPass (line 58) | override internal Task FinalPass() method SupplyValues (line 102) | internal async Task<(string[] displayValues, object[] dataValues)> Sup... FILE: RdlEngine/Definition/DataSetsDefn.cs class DataSetsDefn (line 15) | [Serializable] method DataSetsDefn (line 20) | internal DataSetsDefn(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 49) | async override internal Task FinalPass() method GetData (line 58) | internal async Task GetData(Report rpt) FILE: RdlEngine/Definition/DataSourceDefn.cs class DataSourceDefn (line 19) | [Serializable] method DataSourceDefn (line 34) | internal DataSourceDefn(ReportDefn r, ReportLink p, XmlNode xNode) : b... method FinalPass (line 81) | async override internal Task FinalPass() method IsConnected (line 90) | internal bool IsConnected(Report rpt) method AreSameDataSource (line 95) | internal bool AreSameDataSource(DataSourceDefn dsd) method ConnectDataSource (line 112) | async internal Task ConnectDataSource(Report rpt) method ConnectDataSourceAsync (line 158) | async internal Task ConnectDataSourceAsync(Report rpt) method ConnectDataSourceLogInfoAndCache (line 204) | private void ConnectDataSourceLogInfoAndCache(Report rpt, IDbConnectio... method HandleConnectionError (line 218) | private IDbConnection HandleConnectionError(Report rpt, IDbConnection ... method ConnectDataSourceReference (line 235) | async Task ConnectDataSourceReference(Report rpt) method IsUserConnection (line 277) | internal bool IsUserConnection(Report rpt) method SetUserConnection (line 286) | internal void SetUserConnection(Report rpt, IDbConnection cn) method SetSysConnection (line 296) | private void SetSysConnection(Report rpt, IDbConnection cn) method GetConnection (line 306) | internal IDbConnection GetConnection(Report rpt) method CleanUp (line 323) | internal void CleanUp(Report rpt) method SqlConnect (line 365) | internal IDbConnection SqlConnect(Report rpt) FILE: RdlEngine/Definition/DataSourceReference.cs class DataSourceReference (line 14) | public sealed class DataSourceReference method Create (line 24) | static public void Create(string filename, string indata, string pswd) method Retrieve (line 67) | static public string Retrieve(string filename, string pswd) FILE: RdlEngine/Definition/DataSourcesDefn.cs class DataSourcesDefn (line 15) | [Serializable] method DataSourcesDefn (line 20) | internal DataSourcesDefn(ReportDefn r, ReportLink p, XmlNode xNode) : ... method CleanUp (line 51) | internal void CleanUp(Report rpt) // closes any connections method FinalPass (line 59) | async override internal Task FinalPass() method ConnectDataSources (line 68) | async internal Task ConnectDataSources(Report rpt) FILE: RdlEngine/Definition/DataType.cs class DataType (line 11) | public class DataType method GetStyleType (line 13) | static public Type GetStyleType(string s) method GetStyle (line 19) | static internal TypeCode GetStyle(string s, ReportDefn r) method IsNumeric (line 75) | static internal bool IsNumeric(TypeCode tc) FILE: RdlEngine/Definition/DataValue.cs class DataValue (line 12) | [Serializable] method DataValue (line 17) | internal DataValue(ReportDefn r, ReportLink p, XmlNode xNode) : base(r... method FinalPass (line 40) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DataValues.cs class DataValues (line 13) | [Serializable] method DataValues (line 18) | internal DataValues(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method FinalPass (line 47) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DefaultValue.cs class DefaultValue (line 12) | [Serializable] method DefaultValue (line 20) | internal DefaultValue(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 44) | async override internal Task FinalPass() method GetValue (line 59) | internal async Task GetValue(Report rpt) method ValuesCalc (line 81) | internal async Task ValuesCalc(Report rpt) method GetDataValues (line 94) | private object[] GetDataValues(Report rpt) method SetDataValues (line 99) | private void SetDataValues(Report rpt, object[] vs) FILE: RdlEngine/Definition/Details.cs class Details (line 13) | [Serializable] method Details (line 23) | internal Details(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 60) | async override internal Task FinalPass() method Run (line 80) | internal async Task Run(IPresent ip, Rows rs, int start, int end) method RunPage (line 95) | internal async Task RunPage(Pages pgs, Rows rs, int start, int end, fl... method HeightOfRows (line 138) | internal async Task HeightOfRows(Pages pgs, Row r) FILE: RdlEngine/Definition/Drillthrough.cs class Drillthrough (line 12) | [Serializable] method Drillthrough (line 19) | internal Drillthrough(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 45) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DrillthroughParameter.cs class DrillthroughParameter (line 12) | [Serializable] method DrillthroughParameter (line 20) | internal DrillthroughParameter(ReportDefn r, ReportLink p, XmlNode xNo... method FinalPass (line 63) | async override internal Task FinalPass() method ValueValue (line 84) | internal async Task ValueValue(Report rpt, Row r) method OmitValue (line 98) | internal async Task OmitValue(Report rpt, Row r) FILE: RdlEngine/Definition/DrillthroughParameters.cs class DrillthroughParameters (line 13) | [Serializable] method DrillthroughParameters (line 18) | internal DrillthroughParameters(ReportDefn r, ReportLink p, XmlNode xN... method FinalPass (line 45) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DynamicCategories.cs class DynamicCategories (line 12) | [Serializable] method DynamicCategories (line 20) | internal DynamicCategories(ReportDefn r, ReportLink p, XmlNode xNode) ... method FinalPass (line 51) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DynamicColumns.cs class DynamicColumns (line 13) | [Serializable] method DynamicColumns (line 28) | internal DynamicColumns(ReportDefn r, ReportLink p, XmlNode xNode) : b... method FinalPass (line 70) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DynamicExpression.cs class DynamicExpression (line 16) | [Serializable] method DynamicExpression (line 24) | internal DynamicExpression(Report rpt, ReportLink p, string expr, Row ... method DoParse (line 33) | internal async Task DoParse(Report rpt) method ErrorText (line 127) | private string ErrorText(string msg) method ReportError (line 147) | private void ReportError(Report rpt, int severity, string err) method GetTypeCode (line 166) | public System.TypeCode GetTypeCode() method IsConstant (line 171) | public async Task IsConstant() method ConstantOptimization (line 176) | public Task ConstantOptimization() method Evaluate (line 181) | public async Task Evaluate(Report rpt, Row row) method EvaluateString (line 200) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 214) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 228) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 242) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDateTime (line 256) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 270) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Definition/DynamicRows.cs class DynamicRows (line 13) | [Serializable] method DynamicRows (line 28) | internal DynamicRows(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 74) | async override internal Task FinalPass() FILE: RdlEngine/Definition/DynamicSeries.cs class DynamicSeries (line 12) | [Serializable] method DynamicSeries (line 20) | internal DynamicSeries(ReportDefn r, ReportLink p, XmlNode xNode) : ba... method FinalPass (line 53) | async override internal Task FinalPass() FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMF.cs class EMF (line 18) | public class EMF method EMF (line 29) | internal EMF(Single Xin, Single Yin, Single Widthin, Single Heightin) method ProcessEMF (line 40) | public void ProcessEMF(byte[] emf) method MetafileCallback (line 68) | internal bool MetafileCallback(EmfPlusRecordType recordType, int flags... method ProcessRecord (line 81) | internal void ProcessRecord(int flags, EmfPlusRecordType recordType,by... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/Comment.cs class Comment (line 14) | internal class Comment : DrawBase method Comment (line 16) | internal Comment(Single Xin, Single Yin, Single WidthIn, Single Height... method Process (line 26) | public List Process(int Flags, byte[] RecordData) FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/DrawBase.cs class DrawBase (line 14) | class DrawBase method getLineStyle (line 24) | protected static BorderStyleEnum getLineStyle(Draw2.Pen p) FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/DrawCurve.cs class DrawCurve (line 15) | internal class DrawCurve : DrawBase method DrawCurve (line 17) | internal DrawCurve(Single Xin, Single Yin, Single WidthIn, Single Heig... method Process (line 27) | public List Process(int Flags, byte[] RecordData) method DoFloat (line 83) | private void DoFloat(UInt32 NumberOfSegments, BinaryReader _br, Draw2.... method DoCompressed (line 96) | private void DoCompressed(UInt32 NumberOfSegments, BinaryReader _br, D... method DoInstructions (line 108) | private void DoInstructions(Draw2.PointF[] points, Draw2.Pen p, UInt32... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/DrawEllipse.cs class DrawEllipse (line 14) | internal class DrawEllipse : DrawBase method DrawEllipse (line 16) | internal DrawEllipse(Single Xin, Single Yin, Single WidthIn, Single He... method Process (line 25) | public List Process(int Flags, byte[] RecordData) method DoEllipse (line 81) | private void DoEllipse(Draw2.Pen p, Single Xp, Single Yp, Single Wid, ... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/DrawLines.cs class DrawLines (line 15) | internal class DrawLines : DrawBase method DrawLines (line 17) | internal DrawLines(Single Xin, Single Yin, Single WidthIn, Single Heig... method Process (line 27) | public List Process(int Flags,byte[] RecordData) method DoFloat (line 87) | private void DoFloat(UInt32 NumberOfPoints, BinaryReader _br, Draw2.Pe... method DoRelative (line 114) | private void DoRelative(UInt32 NumberOfPoints, BinaryReader _br, Draw2... method DoCompressed (line 119) | private void DoCompressed(UInt32 NumberOfPoints, BinaryReader _br, Dra... method DoInstructions (line 146) | private void DoInstructions(Single Xa,Single Xb, Single Ya, Single Yb,... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/DrawPie.cs class DrawPie (line 14) | internal class DrawPie : DrawBase method DrawPie (line 16) | internal DrawPie(Single Xin, Single Yin, Single WidthIn, Single Height... method Process (line 26) | public List Process(int Flags, byte[] RecordData) method DoFloat (line 76) | private void DoFloat(Single StartAngle,Single SweepAngle, BinaryReader... method DoCompressed (line 86) | private void DoCompressed(Single StartAngle,Single SweepAngle, BinaryR... method DoInstructions (line 95) | private void DoInstructions(Single recX, Single recY, Single recWidth,... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/DrawRects.cs class DrawRects (line 14) | internal class DrawRects : DrawBase method DrawRects (line 16) | internal DrawRects(Single Xin, Single Yin, Single WidthIn, Single Heig... method Process (line 26) | public List Process(int Flags, byte[] RecordData) method DoFloat (line 74) | private void DoFloat(UInt32 NumberOfRects, BinaryReader _br, Draw2.Pen p) method DoCompressed (line 86) | private void DoCompressed(UInt32 NumberOfRects, BinaryReader _br, Draw... method DoInstructions (line 98) | private void DoInstructions(Single recX, Single recY, Single recWidth,... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/DrawString.cs class DrawString (line 16) | internal class DrawString : DrawBase method DrawString (line 18) | internal DrawString(Single Xin, Single Yin, Single WidthIn, Single Hei... method Process (line 28) | public List Process(int Flags, byte[] RecordData) method DoInstructions (line 107) | private void DoInstructions(Draw2.Font f, Draw2.StringFormat sf, Draw2... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/FillEllipse.cs class FillEllipse (line 14) | internal class FillEllipse : DrawBase method FillEllipse (line 16) | internal FillEllipse(Single Xin, Single Yin, Single WidthIn, Single He... method Process (line 26) | public List Process(int Flags, byte[] RecordData) method DoInstructions (line 98) | private void DoInstructions(Single Xp, Single Yp, Single Wid, Single H... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/FillPie.cs class FillPie (line 14) | internal class FillPie : DrawBase method FillPie (line 16) | internal FillPie(Single Xin, Single Yin, Single WidthIn, Single Height... method Process (line 25) | public List Process(int Flags, byte[] RecordData) method DoFloat (line 88) | private void DoFloat(Single StartAngle,Single SweepAngle, BinaryReader... method DoCompressed (line 97) | private void DoCompressed(Single StartAngle, Single SweepAngle, Binary... method DoInstructions (line 106) | private void DoInstructions(Single recX, Single recY, Single recWidth,... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/FillPolygon.cs class FillPolygon (line 16) | internal class FillPolygon : DrawBase method FillPolygon (line 18) | internal FillPolygon(Single Xin, Single Yin, Single WidthIn, Single He... method Process (line 27) | public List Process(int Flags, byte[] RecordData) method DoFloat (line 89) | private void DoFloat(UInt32 NumberOfPoints, BinaryReader _br, Draw2.Br... method DoCompressed (line 101) | private void DoCompressed(UInt32 NumberOfPoints, BinaryReader _br, Dra... method DoInstructions (line 114) | private void DoInstructions(Draw2.PointF[] Ps, Draw2.Brush b) FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFDrawingRecords/FillRects.cs class FillRects (line 14) | internal class FillRects : DrawBase method FillRects (line 16) | internal FillRects(Single Xin, Single Yin, Single WidthIn, Single Heig... method Process (line 25) | public List Process(int Flags, byte[] RecordData) method DoFloat (line 87) | private void DoFloat(UInt32 NumberOfRects, BinaryReader _br, Draw2.Bru... method DoCompressed (line 99) | private void DoCompressed(UInt32 NumberOfRects, BinaryReader _br, Draw... method DoInstructions (line 111) | private void DoInstructions(Single recX, Single recY, Single recWidth,... FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFObjects/EMFBrush.cs type EMFBrushType (line 14) | internal enum EMFBrushType class EMFBrush (line 23) | class EMFBrush : EMFRecordObject method EMFBrush (line 28) | internal EMFBrush() method getEMFBrush (line 33) | internal static EMFBrush getEMFBrush(byte[] RecordData) method ProcessBrush (line 38) | internal static EMFBrush ProcessBrush(byte[] RecordData) class EmfLinearGradientBrush (line 80) | internal class EmfLinearGradientBrush : EMFBrush method EmfLinearGradientBrush (line 82) | public EmfLinearGradientBrush(BinaryReader _br) class EmfHatchFillBrush (line 154) | internal class EmfHatchFillBrush: EMFBrush method EmfHatchFillBrush (line 157) | public EmfHatchFillBrush(BinaryReader _br) class EmfSolidBrush (line 181) | internal class EmfSolidBrush : EMFBrush method EmfSolidBrush (line 183) | public EmfSolidBrush(byte A, byte R, byte G, byte B) method EmfSolidBrush (line 187) | public EmfSolidBrush(BinaryReader _br) FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFObjects/EMFFont.cs class EMFFont (line 14) | class EMFFont : EMFRecordObject method EMFFont (line 18) | internal EMFFont() method getEMFFont (line 23) | internal static EMFFont getEMFFont(byte[] RecordData) method Process (line 28) | private static EMFFont Process(byte[] RecordData) FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFObjects/EMFPen.cs type PenDataFlags (line 14) | [Flags] type CustomLineCapDataType (line 32) | internal enum CustomLineCapDataType class EMFPen (line 39) | internal class EMFPen : EMFRecordObject method EMFPen (line 43) | private EMFPen(byte[] RecordData) method getEMFPen (line 141) | internal static EMFPen getEMFPen(byte[] RecordData) FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFObjects/EMFStringFormat.cs class EMFStringFormat (line 16) | internal class EMFStringFormat : EMFRecordObject method EMFStringFormat (line 20) | private EMFStringFormat(byte[] RecordData) method getEMFStringFormat (line 73) | internal static EMFStringFormat getEMFStringFormat(byte[] RecordData) FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFRecordObject.cs type EmfObjectType (line 17) | internal enum EmfObjectType class EMFRecordObject (line 30) | internal class EMFRecordObject method getObject (line 35) | internal static EMFRecordObject getObject(int flags, byte[] RecordData) FILE: RdlEngine/Definition/EMFConverter/EMFRecords/EMFTransform/EMFSetPageTransform.cs class EMFSetPageTransform (line 14) | internal class EMFSetPageTransform method getTransform (line 19) | internal static EMFSetPageTransform getTransform(int flags, byte[] Rec... method EMFSetPageTransform (line 24) | internal EMFSetPageTransform(int flags, byte[] RecordData) FILE: RdlEngine/Definition/EmbeddedImage.cs class EmbeddedImage (line 12) | [Serializable] method EmbeddedImage (line 20) | internal EmbeddedImage(ReportDefn r, ReportLink p, XmlNode xNode) : ba... method FinalPass (line 76) | override internal Task FinalPass() FILE: RdlEngine/Definition/EmbeddedImages.cs class EmbeddedImages (line 15) | [Serializable] method EmbeddedImages (line 20) | internal EmbeddedImages(ReportDefn r, ReportLink p, XmlNode xNode) : b... method FinalPass (line 42) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Expression.cs class Expression (line 16) | [Serializable] method Expression (line 25) | internal Expression(ReportDefn r, ReportLink p, XmlNode xNode, Express... method Expression (line 27) | internal Expression(ReportDefn r, ReportLink p, String xNode, Expressi... method FinalPass (line 41) | override internal async Task FinalPass() method ErrorText (line 148) | private string ErrorText(string msg) method ReportError (line 168) | private void ReportError(Report rpt, int severity, string err) method GetTypeCode (line 194) | public System.TypeCode GetTypeCode() method IsConstant (line 201) | public async Task IsConstant() method ConstantOptimization (line 212) | public Task ConstantOptimization() method Evaluate (line 217) | public async Task Evaluate(Report rpt, Row row) method EvaluateString (line 245) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 259) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 273) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 287) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDateTime (line 301) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 315) | public async Task EvaluateBoolean(Report rpt, Row row) method SetSource (line 331) | public async Task SetSource(string sql) FILE: RdlEngine/Definition/ExpressionType.cs type ExpressionType (line 11) | internal enum ExpressionType FILE: RdlEngine/Definition/Field.cs class Field (line 11) | [Serializable] method Field (line 29) | internal Field(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 76) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Fields.cs class Fields (line 13) | [Serializable] method Fields (line 18) | internal Fields(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 63) | async override internal Task FinalPass() method CopyTo (line 94) | public void CopyTo(Array array, int index) method GetEnumerator (line 111) | public IEnumerator GetEnumerator() FILE: RdlEngine/Definition/Filter.cs class Filter (line 18) | [Serializable] method Filter (line 60) | internal Filter(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 131) | async override internal Task FinalPass() method Apply (line 139) | internal async Task Apply(Report rpt, Row datarow) method Apply (line 195) | internal async Task Apply(Report rpt, Rows data) method ApplySingleRowFilter (line 203) | private async Task ApplySingleRowFilter(Report rpt, Rows data) method ApplyTopBottomFilter (line 220) | private async Task ApplyTopBottomFilter(Report rpt, Rows data) method ApplyCompare (line 292) | static internal int ApplyCompare(TypeCode tc, object left, object right) method ApplyCompare (line 352) | static internal int ApplyCompare(object left, object right) FILE: RdlEngine/Definition/FilterOperator.cs type FilterOperatorEnum (line 10) | internal enum FilterOperatorEnum class FilterOperator (line 27) | internal class FilterOperator method GetStyle (line 29) | static internal FilterOperatorEnum GetStyle(string s) FILE: RdlEngine/Definition/FilterValue.cs class FilterValue (line 12) | [Serializable] method FilterValue (line 17) | internal FilterValue(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 23) | async override internal Task FinalPass() FILE: RdlEngine/Definition/FilterValues.cs class FilterValues (line 14) | [Serializable] method FilterValues (line 19) | internal FilterValues(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 48) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Filters.cs class Filters (line 13) | [Serializable] method Filters (line 18) | internal Filters(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 47) | async override internal Task FinalPass() method Apply (line 56) | internal async Task Apply(Report rpt, Row datarow) method ApplyFinalFilters (line 68) | internal async Task ApplyFinalFilters(Report rpt, Rows data, bool make... FILE: RdlEngine/Definition/Footer.cs class Footer (line 13) | [Serializable] method Footer (line 20) | internal Footer(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 48) | async override internal Task FinalPass() method Run (line 54) | internal async Task Run(IPresent ip, Row row) method RunPage (line 60) | internal async Task RunPage(Pages pgs, Row row) method HeightOfRows (line 80) | internal async Task HeightOfRows(Pages pgs, Row r) FILE: RdlEngine/Definition/GroupEntry.cs class GroupEntry (line 12) | internal class GroupEntry method GroupEntry (line 20) | internal GroupEntry(Grouping g, Sorting s, int start) FILE: RdlEngine/Definition/GroupExpression.cs class GroupExpression (line 12) | [Serializable] method GroupExpression (line 17) | internal GroupExpression(ReportDefn r, ReportLink p, XmlNode xNode) : ... method FinalPass (line 23) | async override internal Task FinalPass() FILE: RdlEngine/Definition/GroupExpressions.cs class GroupExpressions (line 13) | [Serializable] method GroupExpressions (line 18) | internal GroupExpressions(ReportDefn r, ReportLink p, XmlNode xNode) :... method FinalPass (line 47) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Grouping.cs class Grouping (line 14) | [Serializable] method Grouping (line 68) | internal Grouping(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 155) | async override internal Task FinalPass() method AddHideDuplicates (line 187) | internal void AddHideDuplicates(Textbox tb) method ResetHideDuplicates (line 194) | internal void ResetHideDuplicates(Report rpt) method PageBreakCondition (line 238) | internal async Task PageBreakCondition(Report r, Row row, bool S... method GetIndex (line 297) | internal int GetIndex(Report rpt) method SetIndex (line 303) | internal void SetIndex(Report rpt, int i) method GetRows (line 310) | internal Rows GetRows(Report rpt) method SetRows (line 316) | internal void SetRows(Report rpt, Rows rows) method GetValue (line 323) | private WorkClass GetValue(Report rpt) class WorkClass (line 334) | class WorkClass method WorkClass (line 338) | internal WorkClass() FILE: RdlEngine/Definition/Header.cs class Header (line 13) | [Serializable] method Header (line 20) | internal Header(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 46) | async override internal Task FinalPass() method Run (line 54) | internal async Task Run(IPresent ip, Row row) method RunPage (line 60) | internal async Task RunPage(Pages pgs, Row row) method HeightOfRows (line 107) | internal async Task HeightOfRows(Pages pgs, Row r) method ClearCache (line 119) | public void ClearCache(Report rpt) method GetValue (line 126) | private WorkClass GetValue(Report rpt) method SetValue (line 137) | private void SetValue(Report rpt, WorkClass w) class WorkClass (line 142) | class WorkClass method WorkClass (line 146) | internal WorkClass() FILE: RdlEngine/Definition/Image.cs class Image (line 27) | [Serializable] method Image (line 56) | internal Image(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p,... method FinalPass (line 98) | async override internal Task FinalPass() method IsConstant (line 112) | async Task IsConstant() method Run (line 127) | async override internal Task Run(IPresent ip, Row row) method RunPage (line 151) | override internal async Task RunPage(Pages pgs, Row row) method GetImageStream (line 257) | async Task<(Stream stream, string mtype)> GetImageStream(Report rpt, R... method GetMimeType (line 350) | static internal string GetMimeType(string file) method GetWC (line 379) | private WorkClass GetWC(Report rpt) method RemoveImageWC (line 390) | private void RemoveImageWC(Report rpt) class WorkClass (line 395) | class WorkClass method WorkClass (line 398) | internal WorkClass() FILE: RdlEngine/Definition/ImageSizing.cs type ImageSizingEnum (line 11) | public enum ImageSizingEnum class ImageSizing (line 33) | public class ImageSizing method GetStyle (line 41) | static public ImageSizingEnum GetStyle(string s) method GetStyle (line 46) | static internal ImageSizingEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/ImageSource.cs type ImageSourceEnum (line 11) | internal enum ImageSourceEnum class ImageSource (line 25) | internal class ImageSource method GetStyle (line 27) | static internal ImageSourceEnum GetStyle(string s) FILE: RdlEngine/Definition/Legend.cs class Legend (line 12) | [Serializable] method Legend (line 26) | internal Legend(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 64) | async override internal Task FinalPass() FILE: RdlEngine/Definition/LegendLayout.cs type LegendLayoutEnum (line 9) | public enum LegendLayoutEnum class LegendLayout (line 15) | public class LegendLayout method GetStyle (line 17) | static public LegendLayoutEnum GetStyle(string s) method GetStyle (line 22) | static internal LegendLayoutEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/LegendPosition.cs type LegendPositionEnum (line 9) | public enum LegendPositionEnum class LegendPosition (line 24) | public class LegendPosition method GetStyle (line 26) | static public LegendPositionEnum GetStyle(string s) method GetStyle (line 30) | static internal LegendPositionEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/Line.cs class Line (line 12) | [Serializable] method Line (line 16) | internal Line(ReportDefn r, ReportLink p, XmlNode xNode) : base(r,p,xN... method Run (line 31) | override internal Task Run(IPresent ip, Row row) method RunPage (line 37) | override internal async Task RunPage(Pages pgs, Row row) method GetX2 (line 50) | internal float GetX2(Report rpt) FILE: RdlEngine/Definition/List.cs class List (line 19) | [Serializable] method List (line 38) | internal List(ReportDefn r, ReportLink p, XmlNode xNode):base(r,p,xNode) method FinalPass (line 79) | async override internal Task FinalPass() method Run (line 114) | async override internal Task Run(IPresent ip, Row row) method RunPage (line 137) | async override internal Task RunPage(Pages pgs, Row row) method RunSetGrouping (line 164) | private async Task RunSetGrouping(Report rpt, WorkClass wc) method PrepGroups (line 198) | private async Task PrepGroups(Report rpt, WorkClass wc) method RunGroups (line 287) | private async Task RunGroups(IPresent ip, WorkClass wc, List HeightOfList(Report rpt, Graphics g, Row r) method GetValue (line 506) | private WorkClass GetValue(Report rpt) method RemoveValue (line 517) | private void RemoveValue(Report rpt) class WorkClass (line 522) | class WorkClass method WorkClass (line 528) | internal WorkClass(List l) FILE: RdlEngine/Definition/Marker.cs class Marker (line 12) | [Serializable] method Marker (line 21) | internal Marker(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 49) | async override internal Task FinalPass() FILE: RdlEngine/Definition/MarkerType.cs type MarkerTypeEnum (line 10) | internal enum MarkerTypeEnum class MarkerType (line 20) | internal class MarkerType method GetStyle (line 22) | static internal MarkerTypeEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/Matrix.cs class Matrix (line 15) | [Serializable] method Matrix (line 43) | internal Matrix(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p... method FinalPass (line 133) | async override internal Task FinalPass() method Run (line 163) | async override internal Task Run(IPresent ip, Row row) method RunPage (line 214) | async override internal Task RunPage(Pages pgs, Row row) method RunReset (line 267) | internal void RunReset(Report rpt) method HeightOfRow (line 272) | async Task HeightOfRow(Pages pgs, MatrixCellEntry[,] matrix, in... method ColumnWidths (line 364) | internal float[] ColumnWidths(MatrixCellEntry[,] matrix, int maxColumns) method WidthOfColumn (line 375) | float WidthOfColumn(MatrixCellEntry[,] matrix, int iCol) method RunPageColumns (line 386) | async Task RunPageColumns(Pages pgs, WorkClass wc, MatrixCellEntry[,] ... method RunBuild (line 414) | internal async Task<(MatrixCellEntry[,], int numRows, int numCols)> Ru... method HandleRowGrouping (line 557) | async Task HandleRowGrouping(Report rpt, WorkClass wc, Rows rows,... method HandleColumnGrouping (line 628) | async Task HandleColumnGrouping(Report rpt, WorkClass wc, Rows ro... method RunCountSubtotalColumns (line 700) | int RunCountSubtotalColumns(Report rpt, WorkClass wc, MatrixEntry m, i... method RunCountSubtotalRows (line 724) | int RunCountSubtotalRows(Report rpt, WorkClass wc, MatrixEntry m, int ... method RunColumnHeaders (line 748) | void RunColumnHeaders(Report rpt, WorkClass wc, MatrixEntry m, MatrixC... method RunColumnStaticHeaders (line 778) | void RunColumnStaticHeaders(Report rpt, WorkClass wc, MatrixCellEntry[... method RunGetColumnWidth (line 803) | float RunGetColumnWidth(MatrixCellEntry mce) method RunGetColumnHeader (line 873) | MatrixCellEntry RunGetColumnHeader(Report rpt, MatrixEntry me, Rows _D... method RunCorner (line 889) | MatrixCellEntry RunCorner(Rows d) method RunDataColumn (line 915) | void RunDataColumn(Report rpt, WorkClass wc, MatrixEntry rm, MatrixEnt... method RunDataRow (line 961) | void RunDataRow(Report rpt, WorkClass wc, MatrixEntry rm, MatrixEntry ... method RunRowHeaders (line 992) | void RunRowHeaders(Report rpt, WorkClass wc, MatrixEntry m, MatrixCell... method RunRowHeight (line 1021) | float RunRowHeight(int iRow) method RunRowStaticHeaders (line 1032) | void RunRowStaticHeaders(Report rpt, WorkClass wc, MatrixCellEntry[,] ... method RunGetRowHeader (line 1062) | MatrixCellEntry RunGetRowHeader(Report rpt, MatrixEntry me, Rows _Data) method RunGetMatrixCell (line 1079) | MatrixCellEntry RunGetMatrixCell(Report rpt, MatrixEntry me, int iRow,... method RunGetMatrixCell (line 1088) | MatrixCellEntry RunGetMatrixCell(Report rpt, MatrixEntry me, int rcell... method GetMyData (line 1111) | internal Rows GetMyData(Report rpt) method SetMyData (line 1117) | internal void SetMyData(Report rpt, Rows data) method SetGroupingValues (line 1159) | private void SetGroupingValues(Report rpt, MatrixCellEntry mce) method SetGroupingValuesInit (line 1171) | private void SetGroupingValuesInit(Report rpt, Rows data, MatrixEntry ... method SetGroupingValuesMe (line 1193) | private void SetGroupingValuesMe(Report rpt, Rows data, MatrixEntry me) method SetGrouping (line 1209) | private void SetGrouping(Report rpt, Grouping g, MatrixEntry me, Rows ... method GetValue (line 1225) | private WorkClass GetValue(Report rpt) method RemoveValue (line 1236) | private void RemoveValue(Report rpt) class WorkClass (line 1241) | class WorkClass method WorkClass (line 1245) | internal WorkClass() FILE: RdlEngine/Definition/MatrixCell.cs class MatrixCell (line 12) | [Serializable] method MatrixCell (line 21) | internal MatrixCell(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method FinalPass (line 43) | async override internal Task FinalPass() FILE: RdlEngine/Definition/MatrixCellDataElementOutput.cs type MatrixCellDataElementOutputEnum (line 9) | internal enum MatrixCellDataElementOutputEnum class MatrixCellDataElementOutput (line 14) | internal class MatrixCellDataElementOutput method GetStyle (line 16) | static internal MatrixCellDataElementOutputEnum GetStyle(string s, Rep... FILE: RdlEngine/Definition/MatrixCellEntry.cs class MatrixCellEntry (line 11) | internal class MatrixCellEntry method MatrixCellEntry (line 23) | internal MatrixCellEntry(Rows d, ReportItem ri) FILE: RdlEngine/Definition/MatrixCells.cs class MatrixCells (line 13) | [Serializable] method MatrixCells (line 18) | internal MatrixCells(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 47) | async override internal Task FinalPass() FILE: RdlEngine/Definition/MatrixColumn.cs class MatrixColumn (line 12) | [Serializable] method MatrixColumn (line 17) | internal MatrixColumn(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 39) | override internal Task FinalPass() FILE: RdlEngine/Definition/MatrixColumns.cs class MatrixColumns (line 13) | [Serializable] method MatrixColumns (line 18) | internal MatrixColumns(ReportDefn r, ReportLink p, XmlNode xNode) : ba... method FinalPass (line 47) | async override internal Task FinalPass() method GetEnumerator (line 64) | public IEnumerator GetEnumerator() method GetEnumerator (line 73) | IEnumerator IEnumerable.GetEnumerator() FILE: RdlEngine/Definition/MatrixEntry.cs class MatrixEntry (line 13) | internal class MatrixEntry method MatrixEntry (line 30) | internal MatrixEntry(Row r, string hash, MatrixEntry p, int rowCount) method GetSortedData (line 61) | internal List GetSortedData(Report rpt) method GetSortBy (line 139) | Sorting GetSortBy() class MatrixEntryComparer (line 166) | class MatrixEntryComparer : System.Collections.Generic.IComparer Sup... FILE: RdlEngine/Definition/PlotArea.cs class PlotArea (line 12) | [Serializable] method PlotArea (line 17) | internal PlotArea(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 39) | async override internal Task FinalPass() FILE: RdlEngine/Definition/PlotType.cs type PlotTypeEnum (line 9) | internal enum PlotTypeEnum class PlotType (line 15) | internal class PlotType method GetStyle (line 17) | static internal PlotTypeEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/Query.cs class Query (line 23) | [Serializable] method Query (line 38) | internal Query(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 88) | internal override async Task FinalPass() method CreateDataReader (line 153) | private static async Task CreateDataReader(IDbCommand cmSQL) method GetData (line 168) | internal async Task GetData(Report rpt, Fields flds, Filters f) method GetData (line 271) | internal async Task GetData(Report rpt, string xmlData, Fields f... method SetData (line 372) | internal async Task SetData(Report rpt, IEnumerable ie, Fields flds, F... method SetData (line 468) | internal async Task SetData(Report rpt, IDataReader dr, Fields flds, F... method SetData (line 504) | internal async Task SetData(Report rpt, DataTable dt, Fields flds, Fil... method SetData (line 545) | internal async Task SetData(Report rpt, XmlDocument xmlDoc, Fields fld... method AddParameters (line 612) | private async Task AddParameters(Report rpt, IDbConnection cn, IDbComm... method AddParametersAsLiterals (line 649) | private async Task AddParametersAsLiterals(Report rpt, IDbConn... method ParameterValue (line 721) | private async Task ParameterValue(Report rpt, QueryParameter qp) method GetMyData (line 833) | internal Rows GetMyData(Report rpt) method SetMyData (line 838) | private void SetMyData(Report rpt, Rows data) method GetMyUserData (line 850) | private Rows GetMyUserData(Report rpt) method SetMyUserData (line 855) | private void SetMyUserData(Report rpt, Rows data) FILE: RdlEngine/Definition/QueryColumn.cs class QueryColumn (line 10) | [Serializable] method QueryColumn (line 17) | internal QueryColumn(int colnum, string name, TypeCode c) FILE: RdlEngine/Definition/QueryCommandType.cs type QueryCommandTypeEnum (line 11) | internal enum QueryCommandTypeEnum class QueryCommandType (line 17) | internal class QueryCommandType method GetStyle (line 19) | static internal QueryCommandTypeEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/QueryParameter.cs class QueryParameter (line 12) | [Serializable] method QueryParameter (line 29) | internal QueryParameter(ReportDefn r, ReportLink p, XmlNode xNode) : b... method FinalPass (line 67) | async override internal Task FinalPass() method CompareTo (line 96) | public int CompareTo(object obj) FILE: RdlEngine/Definition/QueryParameters.cs class QueryParameters (line 13) | [Serializable] method QueryParameters (line 19) | internal QueryParameters(ReportDefn r, ReportLink p, XmlNode xNode) : ... method FinalPass (line 49) | async override internal Task FinalPass() FILE: RdlEngine/Definition/RDLParser.cs class RDLParser (line 17) | public class RDLParser method RDLParser (line 41) | public RDLParser(String xml) method RDLParser (line 60) | public RDLParser(XmlDocument xml) // preparsed XML method Parse (line 97) | public async Task Parse() method Parse (line 102) | internal async Task Parse(int oc) FILE: RdlEngine/Definition/RSize.cs class RSize (line 19) | [Serializable] method RSize (line 32) | internal RSize(ReportDefn r, string t) method PointSize (line 116) | static public float PointSize(string v) method RSize (line 122) | internal RSize(int normalizedSize) method RSize (line 127) | internal RSize(ReportDefn r, XmlNode xNode):this(r, xNode.InnerText) method PixelsFromPoints (line 154) | static internal int PixelsFromPoints(float x) method PixelsFromPoints (line 162) | static internal int PixelsFromPoints(Graphics g, float x) method ToPixels (line 189) | internal int ToPixels(decimal dpi) method ToPixels (line 200) | static public int ToPixels(int size, decimal dpi) method ToPoints (line 220) | internal float ToPoints() method ToPoints (line 225) | static public float ToPoints(int size) method TwipsFromPoints (line 241) | static internal int TwipsFromPoints(float pt) method PointsFromPixels (line 246) | static internal float PointsFromPixels(Graphics g, int x) method PointsFromPixels (line 253) | static internal float PointsFromPixels(Graphics g, float x) FILE: RdlEngine/Definition/Rectangle.cs class Rectangle (line 12) | [Serializable] method Rectangle (line 20) | internal Rectangle(ReportDefn r, ReportLink p, XmlNode xNode, bool bNo... method Rectangle (line 27) | internal Rectangle(ReportDefn r, ReportLink p, XmlNode xNode):base(r,p... method FinalPass (line 59) | async override internal Task FinalPass() method Run (line 69) | async override internal Task Run(IPresent ip, Row row) method RunPage (line 83) | async override internal Task RunPage(Pages pgs, Row row) method RemoveWC (line 129) | internal override void RemoveWC(Report rpt) FILE: RdlEngine/Definition/ReportClass.cs class ReportClass (line 13) | [Serializable] method ReportClass (line 21) | internal ReportClass(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 50) | override internal Task FinalPass() method Load (line 55) | internal object Load(Report rpt) method Instance (line 109) | internal object Instance(Report rpt) method GetWC (line 113) | private WorkClass GetWC(Report rpt) method RemoveWC (line 127) | private void RemoveWC(Report rpt) class WorkClass (line 132) | class WorkClass method WorkClass (line 136) | internal WorkClass() FILE: RdlEngine/Definition/ReportDefn.cs class ReportDefn (line 25) | [Serializable] method ReportDefn (line 99) | internal ReportDefn(XmlNode xNode, ReportLog replog, string folder, Ne... method InitializeAsync (line 144) | public async Task InitializeAsync() { method FinalPass (line 265) | async Task FinalPass(string folder) method GetObjectNumber (line 325) | internal int GetObjectNumber() method SetObjectNumber (line 331) | internal void SetObjectNumber(int oc) method RunGetData (line 337) | async internal Task RunGetData(Report rpt, IDictionary parms) method CreateDynamicName (line 371) | internal string CreateDynamicName(object ro) method ResetCachedData (line 384) | private void ResetCachedData(Report rpt) method Run (line 392) | internal async Task Run(IPresent ip) method RunPage (line 419) | internal async Task RunPage(IPresent ip) method EvalLanguage (line 688) | internal async Task EvalLanguage(Report rpt, Row r) method ErrorReset (line 821) | internal void ErrorReset() method Dispose (line 834) | public void Dispose() method Dispose (line 844) | protected virtual void Dispose(bool disposing) FILE: RdlEngine/Definition/ReportItem.cs class ReportItem (line 21) | [Serializable] method ReportItem (line 93) | internal ReportItem(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method ReportItemElement (line 124) | internal bool ReportItemElement(XmlNode xNodeLoop) method FinalPass (line 185) | async override internal Task FinalPass() method PositioningFinalPass (line 227) | internal void PositioningFinalPass(int i, List items) method PositioningWidth (line 305) | int PositioningWidth(ReportItem ri) method Run (line 324) | internal virtual Task Run(IPresent ip, Row row) method RunPage (line 329) | virtual internal Task RunPage(Pages pgs, Row row) method IsTableOrMatrixCell (line 334) | internal bool IsTableOrMatrixCell(Report rpt) method LeftCalc (line 370) | internal float LeftCalc(Report rpt) method GetOffsetCalc (line 379) | internal float GetOffsetCalc(Report rpt) method IsHidden (line 471) | internal async Task IsHidden(Report rpt, Row r) method SetPageLeft (line 478) | internal void SetPageLeft(Report rpt) method SetPagePositionAndStyle (line 491) | internal async Task SetPagePositionAndStyle(Report rpt, PageItem pi, R... method GetMC (line 567) | internal MatrixCellEntry GetMC(Report rpt) method SetMC (line 573) | internal void SetMC(Report rpt, MatrixCellEntry mce) method WidthOrOwnerWidth (line 585) | internal float WidthOrOwnerWidth(Report rpt) method WidthCalc (line 611) | internal int WidthCalc(Report rpt, Graphics g) method RunPageNew (line 643) | internal Page RunPageNew(Pages pgs, Page p) method SetPagePositionBegin (line 678) | internal void SetPagePositionBegin(Pages pgs) method SetPagePositionEnd (line 719) | internal void SetPagePositionEnd(Pages pgs, float pos) method Gap (line 732) | internal float Gap(Report rpt) method RelativeY (line 756) | internal float RelativeY(Report rpt) method GetReportItemAbove (line 772) | private ReportItem GetReportItemAbove(Report rpt) method ToolTipValue (line 818) | internal async Task ToolTipValue(Report rpt, Row r) method BookmarkValue (line 844) | internal async Task BookmarkValue(Report rpt, Row r) method GetWC (line 920) | private WorkClass GetWC(Report rpt) method RemoveWC (line 934) | internal virtual void RemoveWC(Report rpt) class WorkClass (line 939) | class WorkClass method WorkClass (line 945) | internal WorkClass() method CompareTo (line 955) | public int CompareTo(object obj) FILE: RdlEngine/Definition/ReportItems.cs class ReportItems (line 14) | [Serializable] method ReportItems (line 19) | internal ReportItems(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 92) | async override internal Task FinalPass() method Run (line 111) | internal async Task Run(IPresent ip, Row row) method RunPage (line 120) | internal async Task RunPage(Pages pgs, Row row, float xOffset) method GetXOffset (line 135) | internal float GetXOffset(Report rpt) method SetXOffset (line 141) | internal void SetXOffset(Report rpt, float f) method GetEnumerator (line 152) | public IEnumerator GetEnumerator() FILE: RdlEngine/Definition/ReportLink.cs class ReportLink (line 12) | [Serializable] method ReportLink (line 19) | internal ReportLink(ReportDefn r, ReportLink p) method FinalPass (line 29) | virtual internal Task FinalPass() method InPageHeaderOrFooter (line 34) | internal bool InPageHeaderOrFooter() FILE: RdlEngine/Definition/ReportLog.cs class ReportLog (line 15) | [Serializable] method ReportLog (line 21) | internal ReportLog() method ReportLog (line 25) | internal ReportLog(ReportLog rl) method LogError (line 34) | internal void LogError(ReportLog rl) method LogError (line 41) | internal void LogError(int severity, string item) method LogError (line 57) | internal void LogError(int severity, List list) method Reset (line 68) | internal void Reset() FILE: RdlEngine/Definition/ReportParameter.cs class ReportParameter (line 14) | [Serializable] method ReportParameter (line 52) | internal ReportParameter(ReportDefn r, ReportLink p, XmlNode xNode) : ... method FinalPass (line 121) | async override internal Task FinalPass() method GetRuntimeValue (line 136) | internal async Task GetRuntimeValue(Report rpt) method GetRuntimeValues (line 160) | internal async Task GetRuntimeValues(Report rpt) method SetRuntimeValue (line 191) | internal void SetRuntimeValue(Report rpt, object v) method SetRuntimeValues (line 241) | internal void SetRuntimeValues(Report rpt, ArrayList vs) method ConvertStringToNumber (line 281) | private object ConvertStringToNumber(string newv) class UserReportParameter (line 350) | public class UserReportParameter method UserReportParameter (line 358) | internal UserReportParameter(Report rpt, ReportParameter rp) method GetDataValueFromDisplay (line 472) | private object GetDataValueFromDisplay(object dvalue) method GetValueAsync (line 526) | public async Task GetValueAsync() method ParseValue (line 536) | private ArrayList ParseValue(string v) FILE: RdlEngine/Definition/ReportParameters.cs class ReportParameters (line 15) | [Serializable] method ReportParameters (line 20) | internal ReportParameters(ReportDefn r, ReportLink p, XmlNode xNode) :... method SetRuntimeValues (line 43) | internal async Task SetRuntimeValues(Report rpt, IDictionary parms) method FinalPass (line 80) | async override internal Task FinalPass() method CopyTo (line 111) | public void CopyTo(Array array, int index) method GetEnumerator (line 128) | public IEnumerator GetEnumerator() FILE: RdlEngine/Definition/Row.cs class Row (line 11) | internal class Row method Row (line 19) | internal Row(Rows r, Row rd) // Constructor that uses existing Row data method Row (line 26) | internal Row(Rows r, int columnCount) FILE: RdlEngine/Definition/RowGrouping.cs class RowGrouping (line 12) | [Serializable] method RowGrouping (line 19) | internal RowGrouping(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 51) | async override internal Task FinalPass() FILE: RdlEngine/Definition/RowGroupings.cs class RowGroupings (line 13) | [Serializable] method RowGroupings (line 19) | internal RowGroupings(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 51) | async override internal Task FinalPass() method GetME (line 65) | internal MatrixEntry GetME(Report rpt) method SetME (line 71) | internal void SetME(Report rpt, MatrixEntry me) method GetWC (line 77) | private WorkClass GetWC(Report rpt) method RemoveWC (line 91) | private void RemoveWC(Report rpt) method GetStaticCount (line 96) | private int GetStaticCount() class WorkClass (line 113) | class WorkClass method WorkClass (line 116) | internal WorkClass() FILE: RdlEngine/Definition/Rows.cs class Rows (line 14) | internal class Rows : System.Collections.Generic.IComparer, IDispos... method Rows (line 21) | internal Rows(Report rpt) method Rows (line 29) | internal Rows(Report rpt, Rows r, int start, int end, BitArray ba) method Rows (line 57) | internal Rows(Report rpt, Rows r) method CreateOneRow (line 82) | static internal Rows CreateOneRow(Report rpt) method Rows (line 94) | internal Rows(Report rpt, TableGroups tg, Grouping g, Sorting s) method Sort (line 144) | internal void Sort() method Compare (line 178) | public int Compare(Row r1, Row r2) method Dispose (line 210) | public void Dispose() class RowsSortExpression (line 216) | class RowsSortExpression method RowsSortExpression (line 221) | internal RowsSortExpression(Expression e, bool asc) method RowsSortExpression (line 227) | internal RowsSortExpression(Expression e) FILE: RdlEngine/Definition/SeriesGrouping.cs class SeriesGrouping (line 12) | [Serializable] method SeriesGrouping (line 20) | internal SeriesGrouping(ReportDefn r, ReportLink p, XmlNode xNode) : b... method FinalPass (line 51) | async override internal Task FinalPass() FILE: RdlEngine/Definition/SeriesGroupings.cs class SeriesGroupings (line 13) | [Serializable] method SeriesGroupings (line 18) | internal SeriesGroupings(ReportDefn r, ReportLink p, XmlNode xNode) : ... method FinalPass (line 45) | async override internal Task FinalPass() FILE: RdlEngine/Definition/SortBy.cs class SortBy (line 12) | [Serializable] method SortBy (line 22) | internal SortBy(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 51) | async override internal Task FinalPass() FILE: RdlEngine/Definition/SortDirection.cs type SortDirectionEnum (line 9) | internal enum SortDirectionEnum class SortDirection (line 14) | internal class SortDirection method GetStyle (line 16) | static internal SortDirectionEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/Sorting.cs class Sorting (line 14) | [Serializable] method Sorting (line 19) | internal Sorting(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 48) | async override internal Task FinalPass() FILE: RdlEngine/Definition/StaticCategories.cs class StaticCategories (line 13) | [Serializable] method StaticCategories (line 18) | internal StaticCategories(ReportDefn r, ReportLink p, XmlNode xNode) :... method FinalPass (line 47) | async override internal Task FinalPass() FILE: RdlEngine/Definition/StaticColumn.cs class StaticColumn (line 12) | [Serializable] method StaticColumn (line 21) | internal StaticColumn(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 43) | async override internal Task FinalPass() FILE: RdlEngine/Definition/StaticColumns.cs class StaticColumns (line 13) | [Serializable] method StaticColumns (line 18) | internal StaticColumns(ReportDefn r, ReportLink p, XmlNode xNode) : ba... method FinalPass (line 47) | async override internal Task FinalPass() FILE: RdlEngine/Definition/StaticMember.cs class StaticMember (line 12) | [Serializable] method StaticMember (line 18) | internal StaticMember(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 41) | async override internal Task FinalPass() FILE: RdlEngine/Definition/StaticRow.cs class StaticRow (line 12) | [Serializable] method StaticRow (line 21) | internal StaticRow(ReportDefn r, ReportLink p, XmlNode xNode) : base(r... method FinalPass (line 43) | async override internal Task FinalPass() FILE: RdlEngine/Definition/StaticRows.cs class StaticRows (line 13) | [Serializable] method StaticRows (line 18) | internal StaticRows(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method FinalPass (line 47) | async override internal Task FinalPass() FILE: RdlEngine/Definition/StaticSeries.cs class StaticSeries (line 14) | [Serializable] method StaticSeries (line 19) | internal StaticSeries(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 48) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Style.cs class Style (line 23) | [Serializable] method Style (line 104) | internal Style(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 235) | async override internal Task FinalPass() method DrawBackground (line 298) | internal async Task DrawBackground(Report rpt, Draw2.Graphics g, Row r... method DrawBackgroundCircle (line 362) | internal async Task DrawBackgroundCircle(Report rpt, Draw2.Graphics g,... method DrawBorder (line 379) | internal async Task DrawBorder(Report rpt, Draw2.Graphics g, Row r, Dr... method DrawBorderDashStyle (line 524) | private void DrawBorderDashStyle(Draw2.Pen p, BorderStyleEnum bs) method DrawStyleLine (line 565) | internal async Task DrawStyleLine(Report rpt, Draw2.Graphics g, Row r,... method DrawString (line 604) | internal async Task DrawString(Report rpt, Draw2.Graphics g, object o,... method DrawStringDefaults (line 619) | static internal void DrawStringDefaults(Draw2.Graphics g, object o, Dr... method MeasureString (line 646) | internal async Task MeasureString(Report rpt, Draw2.Graphi... method MeasureStringDefaults (line 665) | static internal async Task MeasureStringDefaults(Report rp... method GetBrush (line 685) | internal async Task GetBrush(Report rpt, Row r) method GetFont (line 700) | internal async Task GetFont(Report rpt, Row r) method GetStringFormat (line 779) | internal async Task GetStringFormat(Report rpt, Ro... method GetStringFormat (line 784) | internal async Task GetStringFormat(Report rpt, Ro... method GetCSS (line 850) | internal async Task GetCSS(Report rpt, Row row, bool bDefaults) method GetStyleInfo (line 961) | internal async Task GetStyleInfo(Report rpt, Row r) method GetFormatedString (line 1055) | static internal async Task GetFormatedString(Report rpt, Style... method IsConstant (line 1130) | private async Task IsConstant() method PaddingAdjust (line 1245) | internal async Task PaddingAdjust(Report rpt, Row r, ... method EvalBackgroundColor (line 1286) | internal async Task EvalBackgroundColor(Report rpt, Row row) method EvalBackgroundGradientType (line 1301) | internal async Task EvalBackgroundGradient... method EvalBackgroundGradientEndColor (line 1316) | internal async Task EvalBackgroundGradientEndColor(Report... method IsFontItalic (line 1342) | internal async Task IsFontItalic(Report rpt, Row r) method EvalFontStyle (line 1350) | internal async Task EvalFontStyle(Report rpt, Row row) method EvalFontFamily (line 1365) | internal async Task EvalFontFamily(Report rpt, Row row) method EvalFontSize (line 1379) | internal async Task EvalFontSize(Report rpt, Row row) method EvalFontWeight (line 1397) | internal async Task EvalFontWeight(Report rpt, Row row) method IsFontBold (line 1406) | internal async Task IsFontBold(Report rpt, Row r) method EvalFormat (line 1433) | internal async Task EvalFormat(Report rpt, Row row) method EvalTextDecoration (line 1453) | internal async Task EvalTextDecoration(Report rpt,... method EvalTextAlign (line 1468) | internal async Task EvalTextAlign(Report rpt, Row row) method EvalVerticalAlign (line 1483) | internal async Task EvalVerticalAlign(Report rpt, R... method EvalColor (line 1498) | internal async Task EvalColor(Report rpt, Row row) method EvalPaddingLeft (line 1513) | internal async Task EvalPaddingLeft(Report rpt, Row row) method EvalPaddingLeftPx (line 1523) | internal async Task EvalPaddingLeftPx(Report rpt, Row row) method EvalPaddingRight (line 1539) | internal async Task EvalPaddingRight(Report rpt, Row row) method EvalPaddingRightPx (line 1549) | internal async Task EvalPaddingRightPx(Report rpt, Row row) method EvalPaddingTop (line 1565) | internal async Task EvalPaddingTop(Report rpt, Row row) method EvalPaddingTopPx (line 1575) | internal async Task EvalPaddingTopPx(Report rpt, Row row) method EvalPaddingBottom (line 1591) | internal async Task EvalPaddingBottom(Report rpt, Row row) method EvalPaddingBottomPx (line 1601) | internal async Task EvalPaddingBottomPx(Report rpt, Row row) method EvalLineHeight (line 1617) | internal async Task EvalLineHeight(Report rpt, Row r) method EvalDirection (line 1633) | internal async Task EvalDirection(Report rpt, Row r) method EvalWritingMode (line 1648) | internal async Task EvalWritingMode(Report rpt, Row r) method EvalLanguage (line 1664) | internal async Task EvalLanguage(Report rpt, Row r) method EvalUnicodeBiDirectional (line 1678) | internal async Task EvalUnicodeBiDirectional... method EvalCalendar (line 1693) | internal async Task EvalCalendar(Report rpt, Row r) method EvalNumeralLanguage (line 1708) | internal async Task EvalNumeralLanguage(Report rpt, Row r) method EvalNumeralVariant (line 1722) | internal async Task EvalNumeralVariant(Report rpt, Row r) method GetWC (line 1733) | private WorkClass GetWC(Report rpt) method RemoveWC (line 1747) | private void RemoveWC(Report rpt) class WorkClass (line 1752) | class WorkClass method WorkClass (line 1756) | internal WorkClass() FILE: RdlEngine/Definition/StyleBackgroundImage.cs class StyleBackgroundImage (line 26) | [Serializable] method StyleBackgroundImage (line 41) | internal StyleBackgroundImage(ReportDefn r, ReportLink p, XmlNode xNod... method FinalPass (line 82) | async override internal Task FinalPass() method GetCSS (line 96) | internal async Task GetCSS(Report rpt, Row row, bool bDefaults) method IsConstant (line 114) | internal async Task IsConstant() method GetPageImage (line 132) | internal async Task GetPageImage(Report rpt, Row row) method GetImageStream (line 227) | async Task<(Stream stream, string mtype)> GetImageStream(Report rpt, R... method GetCSSDefaults (line 285) | static internal string GetCSSDefaults() method GetWC (line 314) | private WorkClass GetWC(Report rpt) method RemoveWC (line 325) | private void RemoveWC(Report rpt) class WorkClass (line 330) | class WorkClass method WorkClass (line 333) | internal WorkClass() type BackgroundRepeat (line 340) | internal enum BackgroundRepeat FILE: RdlEngine/Definition/StyleBackgroundImageSource.cs type StyleBackgroundImageSourceEnum (line 12) | internal enum StyleBackgroundImageSourceEnum class StyleBackgroundImageSource (line 26) | internal class StyleBackgroundImageSource method GetStyle (line 28) | static internal StyleBackgroundImageSourceEnum GetStyle(string s) FILE: RdlEngine/Definition/StyleBorderColor.cs class StyleBorderColor (line 20) | [Serializable] method StyleBorderColor (line 30) | internal StyleBorderColor(ReportDefn r, ReportLink p, XmlNode xNode) :... method FinalPass (line 69) | async override internal Task FinalPass() method GetCSS (line 85) | internal async Task GetCSS(Report rpt, Row row, bool bDefaults) method IsConstant (line 109) | internal async Task IsConstant() method GetCSSDefaults (line 143) | static internal string GetCSSDefaults() method EvalDefault (line 154) | internal async Task EvalDefault(Report rpt, Row r) method EvalLeft (line 169) | internal async Task EvalLeft(Report rpt, Row r) method EvalRight (line 184) | internal async Task EvalRight(Report rpt, Row r) method EvalTop (line 199) | internal async Task EvalTop(Report rpt, Row r) method EvalBottom (line 214) | internal async Task EvalBottom(Report rpt, Row r) FILE: RdlEngine/Definition/StyleBorderStyle.cs class StyleBorderStyle (line 13) | [Serializable] method StyleBorderStyle (line 23) | internal StyleBorderStyle(ReportDefn r, ReportLink p, XmlNode xNode) :... method FinalPass (line 62) | async override internal Task FinalPass() method GetCSS (line 78) | internal async Task GetCSS(Report rpt, Row row, bool bDefaults) method IsConstant (line 102) | internal async Task IsConstant() method GetCSSDefaults (line 136) | static internal string GetCSSDefaults() method EvalDefault (line 147) | internal async Task EvalDefault(Report rpt, Row r) method EvalLeft (line 162) | internal async Task EvalLeft(Report rpt, Row r) method EvalRight (line 177) | internal async Task EvalRight(Report rpt, Row r) method EvalTop (line 192) | internal async Task EvalTop(Report rpt, Row r) method EvalBottom (line 207) | internal async Task EvalBottom(Report rpt, Row r) method GetBorderStyle (line 217) | static internal BorderStyleEnum GetBorderStyle(string v, BorderStyleEn... type BorderStyleEnum (line 263) | public enum BorderStyleEnum FILE: RdlEngine/Definition/StyleBorderWidth.cs class StyleBorderWidth (line 13) | [Serializable] method StyleBorderWidth (line 24) | internal StyleBorderWidth(ReportDefn r, ReportLink p, XmlNode xNode) :... method FinalPass (line 60) | async override internal Task FinalPass() method GetCSS (line 76) | internal async Task GetCSS(Report rpt, Row row, bool bDefaults) method IsConstant (line 100) | internal async Task IsConstant() method GetCSSDefaults (line 134) | static internal string GetCSSDefaults() method EvalDefault (line 145) | internal async Task EvalDefault(Report rpt, Row r) // return po... method EvalLeft (line 163) | internal async Task EvalLeft(Report rpt, Row r) // return points method EvalRight (line 179) | internal async Task EvalRight(Report rpt, Row r) // return points method EvalTop (line 195) | internal async Task EvalTop(Report rpt, Row r) // return points method EvalBottom (line 211) | internal async Task EvalBottom(Report rpt, Row r) // return points FILE: RdlEngine/Definition/Subreport.cs class Subreport (line 16) | [Serializable] method Subreport (line 45) | internal Subreport(ReportDefn r, ReportLink p, XmlNode xNode) :base(r,... method FinalPass (line 88) | override async internal Task FinalPass() method Run (line 107) | async override internal Task Run(IPresent ip, Row row) method RunPage (line 148) | async override internal Task RunPage(Pages pgs, Row row) method RemoveWC (line 236) | internal override void RemoveWC(Report rpt) method GetReport (line 246) | private async Task GetReport(string folder) method GetRdlSource (line 301) | private string GetRdlSource(string name) method SetSubreportParameters (line 337) | private async Task SetSubreportParameters(Report rpt, Row row) class SubreportWorkClass (line 391) | class SubreportWorkClass method SubreportWorkClass (line 394) | internal SubreportWorkClass(bool rows) FILE: RdlEngine/Definition/SubreportParameter.cs class SubreportParameter (line 12) | [Serializable] method SubreportParameter (line 19) | internal SubreportParameter(ReportDefn r, ReportLink p, XmlNode xNode)... method FinalPass (line 63) | async override internal Task FinalPass() method ValueValue (line 82) | internal async Task ValueValue(Report rpt, Row r) FILE: RdlEngine/Definition/SubreportParameters.cs class SubReportParameters (line 13) | [Serializable] method SubReportParameters (line 18) | internal SubReportParameters(ReportDefn r, ReportLink p, XmlNode xNode... method FinalPass (line 45) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Subtotal.cs class Subtotal (line 12) | [Serializable] method Subtotal (line 35) | internal Subtotal(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 73) | async override internal Task FinalPass() FILE: RdlEngine/Definition/SubtotalPosition.cs type SubtotalPositionEnum (line 9) | internal enum SubtotalPositionEnum class SubtotalPosition (line 16) | internal class SubtotalPosition method GetStyle (line 18) | static internal SubtotalPositionEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/Table.cs class Table (line 17) | [Serializable] method Table (line 40) | internal Table(ReportDefn r, ReportLink p, XmlNode xNode):base(r,p,xNode) method VerifyCC (line 113) | private void VerifyCC() method VerifyCCTableRows (line 138) | private void VerifyCCTableRows(string label, TableRows trs, int colCount) method FinalPass (line 153) | async override internal Task FinalPass() method Run (line 189) | async override internal Task Run(IPresent ip, Row row) method RunPage (line 242) | async override internal Task RunPage(Pages pgs, Row row) method RunPageFooter (line 314) | internal async Task RunPageFooter(Pages pgs, Row row, bool bLast) method GetPageFooterHeight (line 328) | internal async Task GetPageFooterHeight(Pages pgs, Row row) method RunPageHeader (line 340) | internal async Task RunPageHeader(Pages pgs, Row frow, bool bFirst, Ta... method RunPrep (line 380) | async Task RunPrep(Report rpt, Row row, TableWorkClass wc) method SortGroups (line 437) | private void SortGroups(Report rpt, List groupEntries, Tab... method PrepGroups (line 455) | private async Task PrepGroups(Report rpt, TableWorkClass wc) method PrepRecursiveGroup (line 597) | private async Task PrepRecursiveGroup(Report rpt, TableWorkClass wc) method RunGroups (line 708) | private async Task RunGroups(IPresent ip, List groupEntrie... method RunGroupsPage (line 778) | private async Task RunGroupsPage(Pages pgs, TableWorkClass wc, List RunGroupsFooterHeight(Pages pgs, TableWorkCl... method RunGroupsCount (line 885) | private int RunGroupsCount(List groupEntries, int count) method RunGroupsSetGroups (line 904) | internal void RunGroupsSetGroups(Report rpt, TableWorkClass wc, List WidthInPixels(Report rpt, Row row) method GetValue (line 1139) | private TableWorkClass GetValue(Report rpt) method RemoveValue (line 1150) | private void RemoveValue(Report rpt) class TableWorkClass (line 1157) | class TableWorkClass method TableWorkClass (line 1165) | internal TableWorkClass() class RecursiveCompare (line 1174) | class RecursiveCompare: IComparer method RecursiveCompare (line 1181) | internal RecursiveCompare(Report r, IExpr pExpr, TypeCode tc, IExpr gE... method Compare (line 1191) | public int Compare(Row x, Row y) class GroupEntryCompare (line 1202) | class GroupEntryCompare: IComparer method GroupEntryCompare (line 1207) | internal GroupEntryCompare(Report r, TableWorkClass w ) method Compare (line 1215) | public int Compare(GroupEntry x1, GroupEntry y1) FILE: RdlEngine/Definition/TableCell.cs class TableCell (line 13) | [Serializable] method TableCell (line 33) | internal TableCell(ReportDefn r, ReportLink p, XmlNode xNode, int colI... method FinalPass (line 89) | async override internal Task FinalPass() method Run (line 95) | internal async Task Run(IPresent ip, Row row) method RunPage (line 112) | internal async Task RunPage(Pages pgs, Row row) FILE: RdlEngine/Definition/TableCells.cs class TableCells (line 14) | [Serializable] method TableCells (line 19) | internal TableCells(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method FinalPass (line 48) | async override internal Task FinalPass() method Run (line 57) | internal async Task Run(IPresent ip, Row row) method RunPage (line 66) | internal async Task RunPage(Pages pgs, Row row) FILE: RdlEngine/Definition/TableColumn.cs class TableColumn (line 13) | [Serializable] method TableColumn (line 20) | internal TableColumn(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 51) | async override internal Task FinalPass() method Run (line 58) | internal void Run(IPresent ip, Row row) method GetXPosition (line 68) | internal float GetXPosition(Report rpt) method SetXPosition (line 74) | internal void SetXPosition(Report rpt, float xp) method IsHidden (line 86) | internal async Task IsHidden(Report rpt, Row r) method GetWC (line 93) | private WorkClass GetWC(Report rpt) method RemoveWC (line 107) | private void RemoveWC(Report rpt) class WorkClass (line 112) | class WorkClass method WorkClass (line 116) | internal WorkClass() FILE: RdlEngine/Definition/TableColumns.cs class TableColumns (line 14) | [Serializable] method TableColumns (line 19) | internal TableColumns(ReportDefn r, ReportLink p, XmlNode xNode) : bas... method FinalPass (line 56) | async override internal Task FinalPass() method Run (line 65) | internal void Run(IPresent ip, Row row) method CalculateXPositions (line 75) | internal async Task CalculateXPositions(Report rpt, float startpos, Ro... method GetEnumerator (line 97) | public IEnumerator GetEnumerator() method GetEnumerator (line 106) | IEnumerator IEnumerable.GetEnumerator() FILE: RdlEngine/Definition/TableGroup.cs class TableGroup (line 12) | [Serializable] method TableGroup (line 23) | internal TableGroup(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method FinalPass (line 64) | async override internal Task FinalPass() method DefnHeight (line 87) | internal float DefnHeight() FILE: RdlEngine/Definition/TableGroups.cs class TableGroups (line 13) | [Serializable] method TableGroups (line 18) | internal TableGroups(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 47) | async override internal Task FinalPass() method DefnHeight (line 57) | internal float DefnHeight() FILE: RdlEngine/Definition/TableRow.cs class TableRow (line 22) | [Serializable] method TableRow (line 31) | internal TableRow(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 67) | async override internal Task FinalPass() method Run (line 94) | internal async Task Run(IPresent ip, Row row) method RunPage (line 105) | internal async Task RunPage(Pages pgs, Row row) method HeightOfRow (line 128) | internal async Task HeightOfRow(Pages pgs, Row r) method HeightOfRow (line 132) | internal async Task HeightOfRow(Report rpt, Graphics g, Row r) method HeightCalc (line 161) | internal float HeightCalc(Report rpt) method GetWC (line 198) | private WorkClass GetWC(Report rpt) method RemoveWC (line 209) | private void RemoveWC(Report rpt) class WorkClass (line 214) | class WorkClass method WorkClass (line 217) | internal WorkClass(TableRow tr) FILE: RdlEngine/Definition/TableRows.cs class TableRows (line 15) | [Serializable] method TableRows (line 22) | internal TableRows(ReportDefn r, ReportLink p, XmlNode xNode) : base(r... method FinalPass (line 52) | async override internal Task FinalPass() method Run (line 65) | internal async Task Run(IPresent ip, Row row) method RunPage (line 74) | internal async Task RunPage(Pages pgs, Row row) method RunPage (line 79) | internal async Task RunPage(Pages pgs, Row row, bool bCheckRows) method DefnHeight (line 118) | internal float DefnHeight() method HeightOfRows (line 128) | internal async Task HeightOfRows(Pages pgs, Row r) FILE: RdlEngine/Definition/Textbox.cs class Textbox (line 22) | [Serializable] method Textbox (line 66) | internal Textbox(ReportDefn r, ReportLink p, XmlNode xNode):base(r,p,x... method FinalPass (line 126) | async override internal Task FinalPass() method AddExpressionReference (line 178) | internal void AddExpressionReference(string name) method RecordPageReference (line 185) | internal void RecordPageReference(Report rpt, Page p, Row r) method ResetPrevious (line 195) | internal void ResetPrevious(Report rpt) method ResetPrevious (line 201) | void ResetPrevious(TextboxRuntime tbr) method Run (line 207) | async override internal Task Run(IPresent ip, Row row) method RunPage (line 229) | override internal async Task RunPage(Pages pgs, Row row) method RunTextIsDuplicate (line 312) | private bool RunTextIsDuplicate(TextboxRuntime tbr, string t, Page p) method RunText (line 322) | internal async Task RunText(Report rpt, Row row) method RunTextCalcHeight (line 354) | internal async Task RunTextCalcHeight(Report rpt, Graphics g, R... method RunTextCalcHeight (line 359) | internal async Task RunTextCalcHeight(Report rpt, Graphics g, R... method Evaluate (line 398) | internal async Task Evaluate(Report rpt, Row r) method IsHtml (line 434) | internal async Task IsHtml(Report rpt, Row row) method RunCount (line 456) | internal int RunCount(Report rpt) class TextboxRuntime (line 477) | class TextboxRuntime method GetTextboxRuntime (line 486) | static internal TextboxRuntime GetTextboxRuntime(Report rpt, Textbox tb) FILE: RdlEngine/Definition/ThreeDProperties.cs class ThreeDProperties (line 12) | [Serializable] method ThreeDProperties (line 34) | internal ThreeDProperties(ReportDefn r, ReportLink p, XmlNode xNode) :... method FinalPass (line 98) | override internal Task FinalPass() FILE: RdlEngine/Definition/ThreeDPropertiesDrawingStyle.cs type ThreeDPropertiesDrawingStyleEnum (line 9) | internal enum ThreeDPropertiesDrawingStyleEnum class ThreeDPropertiesDrawingStyle (line 15) | internal class ThreeDPropertiesDrawingStyle method GetStyle (line 17) | static internal ThreeDPropertiesDrawingStyleEnum GetStyle(string s, Re... FILE: RdlEngine/Definition/ThreeDPropertiesProjectionMode.cs type ThreeDPropertiesProjectionModeEnum (line 8) | internal enum ThreeDPropertiesProjectionModeEnum class ThreeDPropertiesProjectionMode (line 14) | internal class ThreeDPropertiesProjectionMode method GetStyle (line 16) | static internal ThreeDPropertiesProjectionModeEnum GetStyle(string s) FILE: RdlEngine/Definition/ThreeDPropertiesShading.cs type ThreeDPropertiesShadingEnum (line 9) | internal enum ThreeDPropertiesShadingEnum class ThreeDPropertiesShading (line 16) | internal class ThreeDPropertiesShading method GetStyle (line 18) | static internal ThreeDPropertiesShadingEnum GetStyle(string s, ReportL... FILE: RdlEngine/Definition/Title.cs class Title (line 12) | [Serializable] method Title (line 21) | internal Title(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 52) | async override internal Task FinalPass() FILE: RdlEngine/Definition/TitlePosition.cs type TitlePositionEnum (line 9) | internal enum TitlePositionEnum class TitlePosition (line 15) | internal class TitlePosition method GetStyle (line 17) | static internal TitlePositionEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/ToggleImage.cs class ToggleImage (line 12) | [Serializable] method ToggleImage (line 21) | internal ToggleImage(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 46) | async override internal Task FinalPass() FILE: RdlEngine/Definition/TrueFalseAuto.cs type TrueFalseAutoEnum (line 11) | internal enum TrueFalseAutoEnum class TrueFalseAuto (line 18) | internal class TrueFalseAuto method GetStyle (line 20) | static internal TrueFalseAutoEnum GetStyle(string s, ReportLog rl) FILE: RdlEngine/Definition/ValidValues.cs class ValidValues (line 12) | [Serializable] method ValidValues (line 19) | internal ValidValues(ReportDefn r, ReportLink p, XmlNode xNode) : base... method FinalPass (line 55) | async override internal Task FinalPass() method DisplayValues (line 76) | internal async Task DisplayValues(Report rpt) method DataValues (line 109) | internal async Task DataValues(Report rpt) FILE: RdlEngine/Definition/ValueAxis.cs class ValueAxis (line 12) | [Serializable] method ValueAxis (line 17) | internal ValueAxis(ReportDefn r, ReportLink p, XmlNode xNode) : base(r... method FinalPass (line 39) | async override internal Task FinalPass() FILE: RdlEngine/Definition/Values.cs class Values (line 13) | [Serializable] method Values (line 18) | internal Values(ReportDefn r, ReportLink p, XmlNode xNode) : base(r, p) method FinalPass (line 46) | async override internal Task FinalPass() method GetEnumerator (line 61) | public IEnumerator GetEnumerator() method Add (line 70) | public void Add(Expression item) method Clear (line 75) | public void Clear() method Contains (line 80) | public bool Contains(Expression item) method CopyTo (line 85) | public void CopyTo(Expression[] array, int arrayIndex) method Remove (line 100) | public bool Remove(Expression item) method GetEnumerator (line 109) | IEnumerator IEnumerable.GetEnumerator() FILE: RdlEngine/Definition/Visibility.cs class Visibility (line 12) | [Serializable] method Visibility (line 34) | internal Visibility(ReportDefn r, ReportLink p, XmlNode xNode) : base(... method FinalPass (line 61) | async override internal Task FinalPass() method IsHidden (line 74) | internal async Task IsHidden(Report rpt, Row r) FILE: RdlEngine/ExprParser/CharReader.cs class CharReader (line 11) | internal class CharReader method CharReader (line 24) | internal CharReader(TextReader textReader) method GetNext (line 34) | internal char GetNext() method Peek (line 57) | internal char Peek() method UnGet (line 68) | internal void UnGet() method EndOfInput (line 86) | internal bool EndOfInput() FILE: RdlEngine/ExprParser/LaxBinder.cs class LaxBinder (line 33) | public class LaxBinder : Binder method LaxBinder (line 35) | public LaxBinder() class BinderState (line 39) | private class BinderState method BindToField (line 43) | public override FieldInfo BindToField( method BindToMethod (line 58) | public override MethodBase BindToMethod( method ChangeType (line 109) | public override object ChangeType( method ReorderArgumentArray (line 123) | public override void ReorderArgumentArray( method SelectMethod (line 131) | public override MethodBase SelectMethod( method SelectProperty (line 161) | public override PropertyInfo SelectProperty( method CanConvertFrom (line 197) | private bool CanConvertFrom(Type type1, Type type2) FILE: RdlEngine/ExprParser/Lexer.cs class Lexer (line 13) | internal class Lexer method Lexer (line 23) | internal Lexer(string expr) method Lexer (line 34) | internal Lexer(TextReader source) method Lex (line 47) | internal TokenList Lex() method GetNextToken (line 64) | private Token GetNextToken() method ReadNumber (line 168) | private Token ReadNumber(char ch) method ReadIdentifier (line 233) | private Token ReadIdentifier(char ch) method ReadIdentifier (line 242) | private Token ReadIdentifier(char ch, int initialState) method ReadQuoted (line 344) | private Token ReadQuoted(char ch) method ReadComment (line 388) | private void ReadComment() method ParseShortcut (line 406) | private string ParseShortcut(string identifier) FILE: RdlEngine/ExprParser/Parser.cs class Parser (line 43) | internal class Parser method Parser (line 59) | internal Parser(List c) method Parse (line 70) | internal async Task Parse(NameLookup lu, string expr) method GetLocationInfo (line 92) | private static string GetLocationInfo(Token token) method GetLocationInfoWithValue (line 97) | private static string GetLocationInfoWithValue(Token token) method ParseExpr (line 107) | private async Task ParseExpr(TextReader reader) method MatchExprAndOr (line 127) | private async Task MatchExprAndOr() method MatchExprNot (line 159) | private async Task MatchExprNot() method MatchExprRelop (line 178) | private async Task MatchExprRelop() method MatchExprAddSub (line 223) | private async Task MatchExprAddSub() method MatchExprMultDiv (line 276) | private async Task MatchExprMultDiv() method MatchExprExp (line 317) | private async Task MatchExprExp() method MatchExprUnary (line 335) | private async Task MatchExprUnary() method MatchExprParen (line 359) | private async Task MatchExprParen() method MatchBaseType (line 378) | private async Task MatchBaseType() method MatchFuncIDent (line 411) | private async Task<(bool match, IExpr result)> MatchFuncIDent() method IsAggregate (line 889) | private bool IsAggregate(string method, bool onePart) method ResolveAggrScope (line 923) | private async Task<(object scope, bool bSimple)> ResolveAggrScope(IExp... method ResolveParametersMethod (line 973) | private IExpr ResolveParametersMethod(string pname, string vf, IExpr[]... method ResolveMethodCall (line 1003) | private IExpr ResolveMethodCall(string fullname, IExpr[] args) FILE: RdlEngine/ExprParser/ParserException.cs class ParserException (line 9) | internal class ParserException : ApplicationException method ParserException (line 16) | internal ParserException(string message) : base(message) FILE: RdlEngine/ExprParser/Token.cs class Token (line 9) | internal class Token method Token (line 21) | internal Token(string value, int startLine, int startCol, int endLine,... method Token (line 34) | internal Token(string value, TokenTypes type) method Token (line 43) | internal Token(TokenTypes type) method ToString (line 52) | public override string ToString() FILE: RdlEngine/ExprParser/TokenList.cs class TokenList (line 12) | internal class TokenList : IEnumerable method TokenList (line 16) | internal TokenList() method Add (line 21) | internal void Add(Token token) method Push (line 26) | internal void Push(Token token) method Peek (line 31) | internal Token Peek() method Extract (line 36) | internal Token Extract() method GetEnumerator (line 51) | public IEnumerator GetEnumerator() FILE: RdlEngine/ExprParser/TokenTypes.cs type TokenTypes (line 9) | internal enum TokenTypes FILE: RdlEngine/Functions/Constant.cs class Constant (line 15) | [Serializable] method Constant (line 23) | public Constant(string v) method GetTypeCode (line 28) | public TypeCode GetTypeCode() method IsConstant (line 33) | public Task IsConstant() method ConstantOptimization (line 38) | public Task ConstantOptimization() method Evaluate (line 43) | public Task Evaluate(Report rpt, Row row) method EvaluateString (line 48) | public Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 53) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 58) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 63) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDateTime (line 68) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 73) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/ConstantBoolean.cs class ConstantBoolean (line 15) | [Serializable] method ConstantBoolean (line 23) | public ConstantBoolean(string v) method ConstantBoolean (line 28) | public ConstantBoolean(bool v) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method IsConstant (line 38) | public Task IsConstant() method ConstantOptimization (line 43) | public Task ConstantOptimization() method Evaluate (line 48) | public Task Evaluate(Report rpt, Row row) method EvaluateString (line 53) | public Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 58) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 63) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 68) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDateTime (line 73) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 78) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/ConstantDateTime.cs class ConstantDateTime (line 15) | [Serializable] method ConstantDateTime (line 23) | public ConstantDateTime(string v) method ConstantDateTime (line 28) | public ConstantDateTime(DateTime v) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method IsConstant (line 38) | public Task IsConstant() method ConstantOptimization (line 43) | public Task ConstantOptimization() method Evaluate (line 48) | public Task Evaluate(Report rpt, Row row) method EvaluateString (line 53) | public Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 58) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 63) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 68) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDateTime (line 73) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 78) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/ConstantDecimal.cs class ConstantDecimal (line 17) | [Serializable] method ConstantDecimal (line 25) | public ConstantDecimal(string v) method ConstantDecimal (line 30) | public ConstantDecimal(decimal v) method GetTypeCode (line 35) | public TypeCode GetTypeCode() method IsConstant (line 40) | public Task IsConstant() method ConstantOptimization (line 45) | public Task ConstantOptimization() method Evaluate (line 50) | public Task Evaluate(Report rpt, Row row) method EvaluateString (line 55) | public Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 60) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 65) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 70) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateDateTime (line 75) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 80) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/ConstantDouble.cs class ConstantDouble (line 18) | [Serializable] method ConstantDouble (line 26) | public ConstantDouble(string v) method ConstantDouble (line 31) | public ConstantDouble(double v) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method IsConstant (line 41) | public Task IsConstant() method ConstantOptimization (line 46) | public Task ConstantOptimization() method Evaluate (line 51) | public Task Evaluate(Report rpt, Row row) method EvaluateString (line 56) | public Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 61) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 66) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 71) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDateTime (line 76) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 81) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/ConstantError.cs class ConstantError (line 15) | [Serializable] method ConstantError (line 22) | public ConstantError(string v) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method IsConstant (line 32) | public Task IsConstant() method ConstantOptimization (line 37) | public Task ConstantOptimization() method Evaluate (line 42) | public Task Evaluate(Report rpt, Row row) method EvaluateString (line 47) | public Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 52) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 57) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 62) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateDateTime (line 67) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 72) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/ConstantInteger.cs class ConstantInteger (line 15) | [Serializable] method ConstantInteger (line 23) | public ConstantInteger(string v) method ConstantInteger (line 28) | public ConstantInteger(int v) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method IsConstant (line 38) | public Task IsConstant() method ConstantOptimization (line 43) | public Task ConstantOptimization() method Evaluate (line 48) | public Task Evaluate(Report rpt, Row row) method EvaluateString (line 53) | public Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 58) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 63) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 68) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateDateTime (line 73) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 78) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/ConstantString.cs class ConstantString (line 15) | [Serializable] method ConstantString (line 23) | public ConstantString(string v) method GetTypeCode (line 28) | public TypeCode GetTypeCode() method IsConstant (line 33) | public Task IsConstant() method ConstantOptimization (line 38) | public Task ConstantOptimization() method Evaluate (line 43) | public Task Evaluate(Report rpt, Row row) method EvaluateString (line 48) | public Task EvaluateString(Report rpt, Row row) method EvaluateDouble (line 53) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 58) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 63) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDateTime (line 68) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 73) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/Financial.cs class Financial (line 21) | sealed internal class Financial method DDB (line 31) | static public double DDB(double cost, double salvage, int life, int pe... method DDB (line 45) | static public double DDB(double cost, double salvage, int life, int pe... method FV (line 71) | static public double FV(double rate, int periods, double pmt, double p... method IPmt (line 97) | static public double IPmt(double rate, int period, int periods, double... method NPer (line 128) | static public double NPer(double rate, double pmt, double presentValue... method Pmt (line 159) | static public double Pmt(double rate, int periods, double presentValue... method PV (line 187) | static public double PV(double rate, int periods, double pmt, double f... method Rate (line 214) | static public double Rate(int periods, double pmt, double presentValue... method RateGuess (line 260) | static private double RateGuess(int periods, double pmt, double pv, do... method SLN (line 276) | static public double SLN(double cost, double salvage, double life) method SYD (line 291) | static public double SYD(double cost, double salvage, int life, int pe... FILE: RdlEngine/Functions/FunctionAggr.cs class FunctionAggr (line 16) | [Serializable] method FunctionAggr (line 30) | public FunctionAggr(IExpr e, object scp) method IsConstant (line 37) | public Task IsConstant() method ConstantOptimization (line 42) | public async Task ConstantOptimization() method EvaluateBoolean (line 49) | public virtual Task EvaluateBoolean(Report rpt, Row row) method GetDataScope (line 71) | protected RowEnumerable GetDataScope(Report rpt, Row row, out bool bSave) class RowEnumerable (line 153) | internal class RowEnumerable : IEnumerable method RowEnumerable (line 159) | public RowEnumerable(int start, int end, List d, bool levelCheck) method GetEnumerator (line 188) | public IEnumerator GetEnumerator() class RowEnumerator (line 194) | internal class RowEnumerator : IEnumerator method RowEnumerator (line 198) | public RowEnumerator(RowEnumerable rea) method MoveNext (line 203) | public bool MoveNext() method Reset (line 226) | public void Reset() FILE: RdlEngine/Functions/FunctionAggrArray.cs class FunctionAggrArray (line 17) | [Serializable] method FunctionAggrArray (line 26) | public FunctionAggrArray(List dataCache, IExpr e, object scp) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method Evaluate (line 39) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 64) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 69) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 74) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 79) | public Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 84) | public Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 89) | private object GetValue(Report rpt) method SetValue (line 95) | private void SetValue(Report rpt, object o) method ClearCache (line 102) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrAvg.cs class FunctionAggrAvg (line 17) | [Serializable] method FunctionAggrAvg (line 28) | public FunctionAggrAvg(List dataCache, IExpr e, object scp) method GetTypeCode (line 40) | public TypeCode GetTypeCode() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 51) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 86) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 92) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 126) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 132) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValueDecimal (line 138) | private ODecimal GetValueDecimal(Report rpt) method GetValueDouble (line 143) | private ODouble GetValueDouble(Report rpt) method SetValue (line 148) | private void SetValue(Report rpt, double d) method SetValue (line 153) | private void SetValue(Report rpt, decimal d) method ClearCache (line 159) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrCount.cs class FunctionAggrCount (line 17) | [Serializable] method FunctionAggrCount (line 26) | public FunctionAggrCount(List dataCache, IExpr e, object scp) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method Evaluate (line 39) | public async Task Evaluate(Report rpt, Row row) method EvaluateInt32 (line 44) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDouble (line 72) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 79) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 86) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 92) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 98) | private int GetValue(Report rpt) method SetValue (line 104) | private void SetValue(Report rpt, int i) method ClearCache (line 111) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrCountDistinct.cs class FunctionAggrCountDistinct (line 17) | [Serializable] method FunctionAggrCountDistinct (line 26) | public FunctionAggrCountDistinct(List dataCache, IExpr e, ... method GetTypeCode (line 34) | public TypeCode GetTypeCode() method Evaluate (line 40) | public async Task Evaluate(Report rpt, Row row) method EvaluateInt32 (line 45) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDouble (line 77) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 84) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 91) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 97) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 103) | private int GetValue(Report rpt) method SetValue (line 109) | private void SetValue(Report rpt, int i) method ClearCache (line 116) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrCountRows.cs class FunctionAggrCountRows (line 15) | [Serializable] method FunctionAggrCountRows (line 23) | public FunctionAggrCountRows(object scp):base(null, scp) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method Evaluate (line 33) | public async Task Evaluate(Report rpt, Row row) method EvaluateInt32 (line 38) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDouble (line 50) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 57) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 64) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 70) | public async Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionAggrFirst.cs class FunctionAggrFirst (line 17) | [Serializable] method FunctionAggrFirst (line 26) | public FunctionAggrFirst(List dataCache, IExpr e, object scp) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 62) | public override async Task EvaluateBoolean(Report rpt,Row row) method EvaluateDouble (line 68) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 74) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 80) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 86) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 92) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 98) | private object GetValue(Report rpt) method SetValue (line 103) | private void SetValue(Report rpt, object o) method ClearCache (line 110) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrLast.cs class FunctionAggrLast (line 17) | [Serializable] method FunctionAggrLast (line 26) | public FunctionAggrLast(List dataCache, IExpr e, object scp) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 66) | public override async Task EvaluateBoolean(Report rpt,Row row) method EvaluateDouble (line 72) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 78) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 84) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 89) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 95) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 100) | private object GetValue(Report rpt) method SetValue (line 105) | private void SetValue(Report rpt, object o) method ClearCache (line 111) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrLevel.cs class FunctionAggrLevel (line 15) | [Serializable] method FunctionAggrLevel (line 23) | public FunctionAggrLevel(object scp):base(null, scp) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method Evaluate (line 32) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 37) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 51) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 58) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 65) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 71) | public async Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionAggrMax.cs class FunctionAggrMax (line 17) | [Serializable] method FunctionAggrMax (line 26) | public FunctionAggrMax(List dataCache, IExpr e, object scp) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 71) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 77) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 83) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 89) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 95) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 101) | private object GetValue(Report rpt) method SetValue (line 106) | private void SetValue(Report rpt, object o) method ClearCache (line 112) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrMin.cs class FunctionAggrMin (line 17) | [Serializable] method FunctionAggrMin (line 26) | public FunctionAggrMin(List dataCache, IExpr e, object scp) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 71) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 77) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 83) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 89) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 95) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 101) | private object GetValue(Report rpt) method SetValue (line 106) | private void SetValue(Report rpt, object o) method ClearCache (line 112) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrNext.cs class FunctionAggrNext (line 17) | [Serializable] method FunctionAggrNext (line 26) | public FunctionAggrNext(List dataCache, IExpr e, object scp) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 68) | public override async Task EvaluateBoolean(Report rpt,Row row) method EvaluateDouble (line 74) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 80) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 86) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 92) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 98) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 104) | private object GetValue(Report rpt) method SetValue (line 109) | private void SetValue(Report rpt, object o) method ClearCache (line 116) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrPrevious.cs class FunctionAggrPrevious (line 17) | [Serializable] method FunctionAggrPrevious (line 26) | public FunctionAggrPrevious(List dataCache, IExpr e, objec... method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 63) | public override async Task EvaluateBoolean(Report rpt,Row row) method EvaluateDouble (line 69) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 75) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 81) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 87) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 93) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 99) | private object GetValue(Report rpt) method SetValue (line 104) | private void SetValue(Report rpt, object o) method ClearCache (line 111) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrRvAvg.cs class FunctionAggrRvAvg (line 17) | [Serializable] method FunctionAggrRvAvg (line 28) | public FunctionAggrRvAvg(List dataCache, IExpr e, object scp) method GetTypeCode (line 40) | public TypeCode GetTypeCode() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 51) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 81) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 112) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 117) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 123) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 129) | private WorkClass GetValue(Report rpt) method SetValue (line 140) | private void SetValue(Report rpt, WorkClass w) method ClearCache (line 146) | public void ClearCache(Report rpt) class WorkClass (line 152) | class WorkClass method WorkClass (line 156) | internal WorkClass() FILE: RdlEngine/Functions/FunctionAggrRvCount.cs class FunctionAggrRvCount (line 17) | [Serializable] method FunctionAggrRvCount (line 27) | public FunctionAggrRvCount(List dataCache, IExpr e, object... method GetTypeCode (line 34) | public TypeCode GetTypeCode() method Evaluate (line 40) | public async Task Evaluate(Report rpt, Row row) method EvaluateInt32 (line 45) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDouble (line 77) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 82) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 87) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 93) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 98) | private int GetValue(Report rpt) method SetValue (line 104) | private void SetValue(Report rpt, int i) method ClearCache (line 111) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrRvMax.cs class FunctionAggrRvMax (line 17) | [Serializable] method FunctionAggrRvMax (line 26) | public FunctionAggrRvMax(List dataCache, IExpr e, object scp) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 74) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 80) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 86) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 92) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 98) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 104) | private object GetValue(Report rpt) method SetValue (line 109) | private void SetValue(Report rpt, object o) method ClearCache (line 118) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrRvMin.cs class FunctionAggrRvMin (line 17) | [Serializable] method FunctionAggrRvMin (line 26) | public FunctionAggrRvMin(List dataCache, IExpr e, object scp) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 74) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 80) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 86) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 92) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 98) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 103) | private object GetValue(Report rpt) method SetValue (line 108) | private void SetValue(Report rpt, object o) method ClearCache (line 117) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrRvStdev.cs class FunctionAggrRvStdev (line 17) | [Serializable] method FunctionAggrRvStdev (line 26) | public FunctionAggrRvStdev(List dataCache, IExpr e, object... method GetTypeCode (line 33) | public TypeCode GetTypeCode() method Evaluate (line 38) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 43) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 82) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 91) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 100) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 106) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 111) | private WorkClass GetValue(Report rpt) method SetValue (line 122) | private void SetValue(Report rpt, WorkClass w) method ClearCache (line 129) | public void ClearCache(Report rpt) class WorkClass (line 136) | class WorkClass method WorkClass (line 141) | internal WorkClass() FILE: RdlEngine/Functions/FunctionAggrRvStdevp.cs class FunctionAggrRvStdevp (line 17) | [Serializable] method FunctionAggrRvStdevp (line 26) | public FunctionAggrRvStdevp(List dataCache, IExpr e, objec... method GetTypeCode (line 33) | public TypeCode GetTypeCode() method Evaluate (line 38) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 43) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 82) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 91) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 100) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 106) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 111) | private WorkClass GetValue(Report rpt) method SetValue (line 122) | private void SetValue(Report rpt, WorkClass w) method ClearCache (line 129) | public void ClearCache(Report rpt) class WorkClass (line 136) | class WorkClass method WorkClass (line 141) | internal WorkClass() FILE: RdlEngine/Functions/FunctionAggrRvSum.cs class FunctionAggrRvSum (line 17) | [Serializable] method FunctionAggrRvSum (line 28) | public FunctionAggrRvSum(List dataCache, IExpr e, object scp) method GetTypeCode (line 40) | public TypeCode GetTypeCode() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 51) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 78) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 105) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 111) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 117) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 122) | private WorkClass GetValue(Report rpt) method SetValue (line 133) | private void SetValue(Report rpt, WorkClass w) method ClearCache (line 139) | public void ClearCache(Report rpt) class WorkClass (line 145) | class WorkClass method WorkClass (line 148) | internal WorkClass() FILE: RdlEngine/Functions/FunctionAggrRvVar.cs class FunctionAggrRvVar (line 17) | [Serializable] method FunctionAggrRvVar (line 26) | public FunctionAggrRvVar(List dataCache, IExpr e, object scp) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method Evaluate (line 38) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 43) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 82) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 91) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 100) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 106) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 111) | private WorkClass GetValue(Report rpt) method SetValue (line 122) | private void SetValue(Report rpt, WorkClass w) method ClearCache (line 129) | public void ClearCache(Report rpt) class WorkClass (line 136) | class WorkClass method WorkClass (line 141) | internal WorkClass() FILE: RdlEngine/Functions/FunctionAggrRvVarp.cs class FunctionAggrRvVarp (line 17) | [Serializable] method FunctionAggrRvVarp (line 26) | public FunctionAggrRvVarp(List dataCache, IExpr e, object ... method GetTypeCode (line 33) | public TypeCode GetTypeCode() method Evaluate (line 38) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 43) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 82) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 91) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 100) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 106) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 111) | private WorkClass GetValue(Report rpt) method SetValue (line 122) | private void SetValue(Report rpt, WorkClass w) method ClearCache (line 129) | public void ClearCache(Report rpt) class WorkClass (line 136) | class WorkClass method WorkClass (line 141) | internal WorkClass() FILE: RdlEngine/Functions/FunctionAggrStdev.cs class FunctionAggrStdev (line 17) | [Serializable] method FunctionAggrStdev (line 29) | public FunctionAggrStdev(List dataCache, IExpr e, object scp) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method Evaluate (line 42) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 50) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 90) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 99) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 108) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 116) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 122) | private ODouble GetValue(Report rpt) method SetValue (line 127) | private void SetValue(Report rpt, double d) method ClearCache (line 133) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrStdevp.cs class FunctionAggrStdevp (line 17) | [Serializable] method FunctionAggrStdevp (line 29) | public FunctionAggrStdevp(List dataCache, IExpr e, object ... method GetTypeCode (line 37) | public TypeCode GetTypeCode() method Evaluate (line 43) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 51) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 91) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 100) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 109) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 117) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 123) | private ODouble GetValue(Report rpt) method SetValue (line 128) | private void SetValue(Report rpt, double d) method ClearCache (line 134) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrSum.cs class FunctionAggrSum (line 16) | [Serializable] method FunctionAggrSum (line 27) | public FunctionAggrSum(List dataCache, IExpr e, object scp) method GetTypeCode (line 39) | public TypeCode GetTypeCode() method Evaluate (line 45) | public async Task Evaluate(Report rpt, Row row) method EvaluateObject (line 59) | public async Task EvaluateObject(Report rpt, Row row) method EvaluateDouble (line 91) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 116) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 122) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 147) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 153) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValueDecimal (line 159) | private ODecimal GetValueDecimal(Report rpt) method GetValueDouble (line 164) | private ODouble GetValueDouble(Report rpt) method GetValueObject (line 169) | private object GetValueObject(Report rpt) method SetValue (line 174) | private void SetValue(Report rpt, double d) method SetValue (line 179) | private void SetValue(Report rpt, decimal d) method SetValue (line 184) | private void SetValue(Report rpt, object d) method ClearCache (line 191) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrVar.cs class FunctionAggrVar (line 17) | [Serializable] method FunctionAggrVar (line 26) | public FunctionAggrVar(List dataCache, IExpr e, object scp) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method Evaluate (line 39) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 47) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 86) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 95) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 104) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 112) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 117) | private ODouble GetValue(Report rpt) method SetValue (line 122) | private void SetValue(Report rpt, double d) method ClearCache (line 128) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAggrVarp.cs class FunctionAggrVarp (line 17) | [Serializable] method FunctionAggrVarp (line 26) | public FunctionAggrVarp(List dataCache, IExpr e, object scp) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method Evaluate (line 39) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 47) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 84) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 93) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 102) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 110) | public async Task EvaluateDateTime(Report rpt, Row row) method GetValue (line 115) | private ODouble GetValue(Report rpt) method SetValue (line 120) | private void SetValue(Report rpt, double d) method ClearCache (line 126) | public void ClearCache(Report rpt) FILE: RdlEngine/Functions/FunctionAnd.cs class FunctionAnd (line 15) | [Serializable] method FunctionAnd (line 22) | public FunctionAnd(IExpr lhs, IExpr rhs) method GetTypeCode (line 28) | public TypeCode GetTypeCode() method ConstantOptimization (line 33) | public async Task ConstantOptimization() method Evaluate (line 65) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 70) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 75) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 80) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 85) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 91) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 96) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionBinary.cs class FunctionBinary (line 15) | [Serializable] method FunctionBinary (line 24) | public FunctionBinary() method FunctionBinary (line 30) | public FunctionBinary(IExpr l, IExpr r) method IsConstant (line 36) | public async Task IsConstant() FILE: RdlEngine/Functions/FunctionChoose.cs class FunctionChoose (line 17) | [Serializable] method FunctionChoose (line 26) | public FunctionChoose(IExpr[] ie) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method IsConstant (line 38) | public Task IsConstant() method ConstantOptimization (line 43) | public async Task ConstantOptimization() method Evaluate (line 55) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 65) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 71) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 77) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 83) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 89) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 95) | public async Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionCode.cs class FunctionCode (line 17) | [Serializable] method FunctionCode (line 28) | public FunctionCode(string f, IExpr[] a, TypeCode type) method GetTypeCode (line 43) | public TypeCode GetTypeCode() method IsConstant (line 48) | public Task IsConstant() method ConstantOptimization (line 53) | public async Task ConstantOptimization() method Evaluate (line 68) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 106) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 111) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 116) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 121) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 126) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 132) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionCustomInstance.cs class FunctionCustomInstance (line 17) | [Serializable] method FunctionCustomInstance (line 30) | public FunctionCustomInstance(ReportClass rc, string f, IExpr[] a, Typ... method GetTypeCode (line 47) | public TypeCode GetTypeCode() method IsConstant (line 52) | public Task IsConstant() method ConstantOptimization (line 57) | public async Task ConstantOptimization() method Evaluate (line 72) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 109) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 114) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 119) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 124) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 129) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 135) | public async Task EvaluateBoolean(Report rpt, Row row) class TestFunction (line 160) | internal class TestFunction // for testing CodeModules, Classes, and th... method TestFunction (line 163) | public TestFunction() method count (line 168) | public int count() method count (line 173) | public int count(string s) method sqrt (line 179) | static public double sqrt(double x) FILE: RdlEngine/Functions/FunctionCustomStatic.cs class FunctionCustomStatic (line 15) | [Serializable] method FunctionCustomStatic (line 28) | public FunctionCustomStatic(CodeModules cm, string c, string f, IExpr[... method GetTypeCode (line 45) | public TypeCode GetTypeCode() method IsConstant (line 50) | public Task IsConstant() method ConstantOptimization (line 55) | public async Task ConstantOptimization() method Evaluate (line 70) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 102) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 107) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 112) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 117) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 122) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 128) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionDiv.cs class FunctionDiv (line 15) | [Serializable] method FunctionDiv (line 22) | public FunctionDiv() method FunctionDiv (line 26) | public FunctionDiv(IExpr lhs, IExpr rhs) method GetTypeCode (line 32) | public TypeCode GetTypeCode() method ConstantOptimization (line 37) | public async Task ConstantOptimization() method Evaluate (line 65) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 70) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 78) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 85) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 92) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 98) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 104) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionDivDecimal.cs class FunctionDivDecimal (line 15) | [Serializable] method FunctionDivDecimal (line 21) | public FunctionDivDecimal() method FunctionDivDecimal (line 27) | public FunctionDivDecimal(IExpr lhs, IExpr rhs) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method ConstantOptimization (line 38) | public async Task ConstantOptimization() method Evaluate (line 66) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 71) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 78) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 85) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 93) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 99) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 105) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionExecutionTime.cs class FunctionExecutionTime (line 13) | [Serializable] method FunctionExecutionTime (line 19) | public FunctionExecutionTime() method GetTypeCode (line 23) | public TypeCode GetTypeCode() method IsConstant (line 28) | public Task IsConstant() method ConstantOptimization (line 33) | public Task ConstantOptimization() method Evaluate (line 39) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 44) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 50) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 57) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 64) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 70) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 75) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionExp.cs class FunctionExp (line 15) | [Serializable] method FunctionExp (line 22) | public FunctionExp() method FunctionExp (line 26) | public FunctionExp(IExpr lhs, IExpr rhs) method GetTypeCode (line 32) | public TypeCode GetTypeCode() method ConstantOptimization (line 37) | public async Task ConstantOptimization() method Evaluate (line 65) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 70) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 78) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 85) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 92) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 98) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 104) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionField.cs class FunctionField (line 17) | [Serializable] method FunctionField (line 26) | public FunctionField(Field fld) method FunctionField (line 31) | public FunctionField(string name) method GetTypeCode (line 41) | public virtual TypeCode GetTypeCode() method IsConstant (line 52) | public virtual Task IsConstant() method ConstantOptimization (line 57) | public virtual async Task ConstantOptimization() method Evaluate (line 66) | public virtual async Task Evaluate(Report rpt, Row row) method IsNumericType (line 89) | private bool IsNumericType(TypeCode tc) method EvaluateDouble (line 108) | public virtual async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 115) | public virtual async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 125) | public virtual async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 132) | public virtual async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 139) | public virtual async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 146) | public virtual async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionFieldCollection.cs class FunctionFieldCollection (line 17) | [Serializable] method FunctionFieldCollection (line 26) | public FunctionFieldCollection(IDictionary fields, IExpr arg) method GetTypeCode (line 32) | public virtual TypeCode GetTypeCode() method IsConstant (line 37) | public virtual Task IsConstant() method ConstantOptimization (line 42) | public virtual async Task ConstantOptimization() method Evaluate (line 61) | public virtual async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 88) | public virtual async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 95) | public virtual async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 102) | public virtual async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 109) | public virtual async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 116) | public virtual async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 123) | public virtual async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionFieldIsMissing.cs class FunctionFieldIsMissing (line 15) | [Serializable] method FunctionFieldIsMissing (line 21) | public FunctionFieldIsMissing(Field fld) : base(fld) method FunctionFieldIsMissing (line 24) | public FunctionFieldIsMissing(string method) : base(method) method GetTypeCode (line 28) | public override TypeCode GetTypeCode() method IsConstant (line 33) | public override Task IsConstant() method ConstantOptimization (line 38) | public override Task ConstantOptimization() method Evaluate (line 44) | public override async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 49) | public override async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 54) | public override async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 59) | public override async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 64) | public override Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 69) | public override async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionFormat.cs class FunctionFormat (line 15) | [Serializable] method FunctionFormat (line 23) | public FunctionFormat(IExpr formatee, IExpr format) method GetTypeCode (line 29) | public TypeCode GetTypeCode() method Evaluate (line 35) | public async Task Evaluate(Report rpt, Row row) method IsConstant (line 40) | public async Task IsConstant() method ConstantOptimization (line 48) | public async Task ConstantOptimization() method EvaluateBoolean (line 61) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 68) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 75) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 81) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 87) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 109) | public async Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionGlobalCollection.cs class FunctionGlobalCollection (line 17) | [Serializable] method FunctionGlobalCollection (line 26) | public FunctionGlobalCollection(IDictionary globals, IExpr arg) method GetTypeCode (line 32) | public virtual TypeCode GetTypeCode() method IsConstant (line 37) | public virtual Task IsConstant() method ConstantOptimization (line 42) | public virtual async Task ConstantOptimization() method Evaluate (line 72) | public virtual async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 98) | public virtual async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 105) | public virtual async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 112) | public virtual async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 119) | public virtual async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 126) | public virtual async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 133) | public virtual async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionIif.cs class FunctionIif (line 15) | [Serializable] method FunctionIif (line 25) | public FunctionIif(IExpr ife, IExpr ifTrue, IExpr ifFalse) method GetTypeCode (line 32) | public TypeCode GetTypeCode() method IsConstant (line 37) | public async Task IsConstant() method ConstantOptimization (line 42) | public async Task ConstantOptimization() method Evaluate (line 58) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 72) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 78) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 84) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 90) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 96) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 102) | public async Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionMinus.cs class FunctionMinus (line 15) | [Serializable] method FunctionMinus (line 21) | public FunctionMinus() method FunctionMinus (line 27) | public FunctionMinus(IExpr lhs, IExpr rhs) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method ConstantOptimization (line 38) | public async Task ConstantOptimization() method Evaluate (line 61) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 66) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 74) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 81) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 88) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 94) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 100) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionMinusDecimal.cs class FunctionMinusDecimal (line 15) | [Serializable] method FunctionMinusDecimal (line 22) | public FunctionMinusDecimal() method FunctionMinusDecimal (line 28) | public FunctionMinusDecimal(IExpr lhs, IExpr rhs) method GetTypeCode (line 34) | public TypeCode GetTypeCode() method ConstantOptimization (line 39) | public async Task ConstantOptimization() method Evaluate (line 61) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 66) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 73) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 80) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 88) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 94) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 100) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionMinusInt32.cs class FunctionMinusInt32 (line 15) | [Serializable] method FunctionMinusInt32 (line 22) | public FunctionMinusInt32() method FunctionMinusInt32 (line 28) | public FunctionMinusInt32(IExpr lhs, IExpr rhs) method GetTypeCode (line 34) | public TypeCode GetTypeCode() method ConstantOptimization (line 39) | public async Task ConstantOptimization() method Evaluate (line 61) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 66) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 73) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 81) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 88) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 94) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 100) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionModulus.cs class FunctionModulus (line 15) | [Serializable] method FunctionModulus (line 22) | public FunctionModulus(IExpr lhs, IExpr rhs) method GetTypeCode (line 28) | public TypeCode GetTypeCode() method ConstantOptimization (line 33) | public async Task ConstantOptimization() method Evaluate (line 61) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 66) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 76) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 83) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 90) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 96) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 102) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionMult.cs class FunctionMult (line 15) | [Serializable] method FunctionMult (line 22) | public FunctionMult() method FunctionMult (line 28) | public FunctionMult(IExpr lhs, IExpr rhs) method GetTypeCode (line 34) | public TypeCode GetTypeCode() method ConstantOptimization (line 39) | public async Task ConstantOptimization() method Evaluate (line 71) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 76) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 84) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 91) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 98) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 104) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 110) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionMultDecimal.cs class FunctionMultDecimal (line 15) | [Serializable] method FunctionMultDecimal (line 22) | public FunctionMultDecimal() method FunctionMultDecimal (line 28) | public FunctionMultDecimal(IExpr lhs, IExpr rhs) method GetTypeCode (line 34) | public TypeCode GetTypeCode() method ConstantOptimization (line 39) | public async Task ConstantOptimization() method Evaluate (line 71) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 76) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 83) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 90) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 98) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 104) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 110) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionNot.cs class FunctionNot (line 15) | [Serializable] method FunctionNot (line 23) | public FunctionNot(IExpr rhs) method GetTypeCode (line 28) | public TypeCode GetTypeCode() method IsConstant (line 33) | public async Task IsConstant() method ConstantOptimization (line 38) | public async Task ConstantOptimization() method Evaluate (line 51) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 56) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 61) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 66) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 71) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 77) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 82) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionOr.cs class FunctionOr (line 15) | [Serializable] method FunctionOr (line 22) | public FunctionOr(IExpr lhs, IExpr rhs) method GetTypeCode (line 28) | public TypeCode GetTypeCode() method ConstantOptimization (line 33) | public async Task ConstantOptimization() method Evaluate (line 65) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 70) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 75) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 80) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 85) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 91) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 96) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionPageNumber.cs class FunctionPageNumber (line 13) | [Serializable] method FunctionPageNumber (line 19) | public FunctionPageNumber() method GetTypeCode (line 23) | public TypeCode GetTypeCode() method IsConstant (line 28) | public Task IsConstant() method ConstantOptimization (line 33) | public Task ConstantOptimization() method Evaluate (line 39) | public Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 44) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 49) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 54) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 61) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 67) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 73) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionParameterCollection.cs class FunctionParameterCollection (line 17) | [Serializable] method FunctionParameterCollection (line 26) | public FunctionParameterCollection(IDictionary parameters, IExpr arg) method GetTypeCode (line 32) | public virtual TypeCode GetTypeCode() method IsConstant (line 37) | public virtual Task IsConstant() method ConstantOptimization (line 42) | public virtual async Task ConstantOptimization() method Evaluate (line 61) | public virtual async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 73) | public virtual async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 80) | public virtual async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 87) | public virtual async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 94) | public virtual async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 101) | public virtual async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 108) | public virtual async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionPlus.cs class FunctionPlus (line 15) | [Serializable] method FunctionPlus (line 21) | public FunctionPlus() method FunctionPlus (line 25) | public FunctionPlus(IExpr lhs, IExpr rhs) method GetTypeCode (line 31) | public TypeCode GetTypeCode() method ConstantOptimization (line 36) | public async Task ConstantOptimization() method Evaluate (line 64) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 69) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 77) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 84) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 91) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 97) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 103) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionPlusDecimal.cs class FunctionPlusDecimal (line 15) | [Serializable] method FunctionPlusDecimal (line 21) | public FunctionPlusDecimal() method FunctionPlusDecimal (line 25) | public FunctionPlusDecimal(IExpr lhs, IExpr rhs) method GetTypeCode (line 31) | public TypeCode GetTypeCode() method ConstantOptimization (line 36) | public async Task ConstantOptimization() method Evaluate (line 64) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 69) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 76) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 83) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 91) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 97) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 103) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionPlusInt32.cs class FunctionPlusInt32 (line 15) | [Serializable] method FunctionPlusInt32 (line 21) | public FunctionPlusInt32() method FunctionPlusInt32 (line 25) | public FunctionPlusInt32(IExpr lhs, IExpr rhs) method GetTypeCode (line 31) | public TypeCode GetTypeCode() method ConstantOptimization (line 36) | public async Task ConstantOptimization() method Evaluate (line 64) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 69) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 76) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 83) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 91) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 97) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 103) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionPlusString.cs class FunctionPlusString (line 15) | [Serializable] method FunctionPlusString (line 22) | public FunctionPlusString(IExpr lhs, IExpr rhs) method GetTypeCode (line 28) | public TypeCode GetTypeCode() method Evaluate (line 34) | public async Task Evaluate(Report rpt, Row row) method ConstantOptimization (line 39) | public async Task ConstantOptimization() method EvaluateDouble (line 52) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 59) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 65) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 71) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 82) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 88) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionRelopEQ.cs class FunctionRelopEQ (line 15) | [Serializable] method FunctionRelopEQ (line 21) | public FunctionRelopEQ(IExpr lhs, IExpr rhs) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method ConstantOptimization (line 32) | public async Task ConstantOptimization() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 51) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 61) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 66) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 71) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 76) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 82) | public Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionRelopGT.cs class FunctionRelopGT (line 15) | [Serializable] method FunctionRelopGT (line 21) | public FunctionRelopGT(IExpr lhs, IExpr rhs) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method ConstantOptimization (line 32) | public async Task ConstantOptimization() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 51) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 61) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 66) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 71) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 76) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 82) | public Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionRelopGTE.cs class FunctionRelopGTE (line 15) | [Serializable] method FunctionRelopGTE (line 21) | public FunctionRelopGTE(IExpr lhs, IExpr rhs) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method ConstantOptimization (line 32) | public async Task ConstantOptimization() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 51) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 61) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 66) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 71) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 76) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 82) | public Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionRelopLT.cs class FunctionRelopLT (line 15) | [Serializable] method FunctionRelopLT (line 21) | public FunctionRelopLT(IExpr lhs, IExpr rhs) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method ConstantOptimization (line 32) | public async Task ConstantOptimization() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 51) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 61) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 66) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 71) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 76) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 82) | public Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionRelopLTE.cs class FunctionRelopLTE (line 15) | [Serializable] method FunctionRelopLTE (line 21) | public FunctionRelopLTE(IExpr lhs, IExpr rhs) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method ConstantOptimization (line 32) | public async Task ConstantOptimization() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 51) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 61) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 66) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 71) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 76) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 82) | public Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionRelopNE.cs class FunctionRelopNE (line 15) | [Serializable] method FunctionRelopNE (line 21) | public FunctionRelopNE(IExpr lhs, IExpr rhs) method GetTypeCode (line 27) | public TypeCode GetTypeCode() method ConstantOptimization (line 32) | public async Task ConstantOptimization() method Evaluate (line 46) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 51) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 61) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 66) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 71) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 76) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 82) | public Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionReportFolder.cs class FunctionReportFolder (line 13) | [Serializable] method FunctionReportFolder (line 19) | public FunctionReportFolder() method GetTypeCode (line 23) | public TypeCode GetTypeCode() method IsConstant (line 28) | public Task IsConstant() method ConstantOptimization (line 33) | public Task ConstantOptimization() method Evaluate (line 38) | public Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 43) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 48) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 53) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 58) | public Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 63) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 69) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionReportItemCollection.cs class FunctionReportItemCollection (line 17) | [Serializable] method FunctionReportItemCollection (line 26) | public FunctionReportItemCollection(IDictionary reportitems, IExpr arg) method GetTypeCode (line 32) | public virtual TypeCode GetTypeCode() method IsConstant (line 37) | public virtual Task IsConstant() method ConstantOptimization (line 42) | public virtual async Task ConstantOptimization() method Evaluate (line 61) | public virtual async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 76) | public virtual async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 83) | public virtual async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 90) | public virtual async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 96) | public virtual async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 103) | public virtual async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 110) | public virtual async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionReportName.cs class FunctionReportName (line 13) | [Serializable] method FunctionReportName (line 19) | public FunctionReportName() method GetTypeCode (line 23) | public TypeCode GetTypeCode() method IsConstant (line 28) | public Task IsConstant() method ConstantOptimization (line 33) | public Task ConstantOptimization() method Evaluate (line 39) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 44) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 49) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 54) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 59) | public Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 64) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 69) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionReportParameter.cs class FunctionReportParameter (line 16) | [Serializable] method FunctionReportParameter (line 26) | public FunctionReportParameter(ReportParameter parm) method SetParameterMethod (line 39) | internal void SetParameterMethod(string pm, IExpr[] args) method GetTypeCode (line 75) | public virtual TypeCode GetTypeCode() method IsConstant (line 94) | public virtual Task IsConstant() method ConstantOptimization (line 99) | public virtual Task ConstantOptimization() method Evaluate (line 105) | public async virtual Task Evaluate(Report rpt, Row row) method EvaluateMV (line 110) | private async Task EvaluateMV(Report rpt, Row row) method EvaluateDouble (line 138) | public virtual async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 163) | public virtual async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 188) | public virtual async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 216) | public virtual async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 226) | public virtual async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 251) | public virtual async Task EvaluateBoolean(Report rpt, Row row) type ReportParameterMethodEnum (line 278) | public enum ReportParameterMethodEnum FILE: RdlEngine/Functions/FunctionReportParameterLabel.cs class FunctionReportParameterLabel (line 15) | [Serializable] method FunctionReportParameterLabel (line 21) | public FunctionReportParameterLabel(ReportParameter parm): base(parm) method GetTypeCode (line 25) | public override TypeCode GetTypeCode() method IsConstant (line 33) | public override Task IsConstant() method ConstantOptimization (line 38) | public override Task ConstantOptimization() method Evaluate (line 44) | public async override Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 63) | public async override Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 70) | public override async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 77) | public async override Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 82) | public async override Task EvaluateDateTime(Report rpt, Row ... method EvaluateBoolean (line 89) | public async override Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionSwitch.cs class FunctionSwitch (line 15) | [Serializable] method FunctionSwitch (line 25) | public FunctionSwitch(IExpr[] expr) method GetTypeCode (line 31) | public TypeCode GetTypeCode() method IsConstant (line 36) | public Task IsConstant() method ConstantOptimization (line 41) | public async Task ConstantOptimization() method Evaluate (line 53) | public async Task Evaluate(Report rpt, Row row) method EvaluateBoolean (line 73) | public async Task EvaluateBoolean(Report rpt, Row row) method EvaluateDouble (line 79) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 85) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 91) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 97) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 103) | public async Task EvaluateDateTime(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionSystem.cs class FunctionSystem (line 17) | [Serializable] method FunctionSystem (line 28) | public FunctionSystem(string c, string f, IExpr[] a, TypeCode type) method GetTypeCode (line 36) | public TypeCode GetTypeCode() method IsConstant (line 41) | public Task IsConstant() method ConstantOptimization (line 46) | public async Task ConstantOptimization() method Evaluate (line 61) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 108) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 113) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 118) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 123) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 128) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 134) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionTextbox.cs class FunctionTextbox (line 15) | [Serializable] method FunctionTextbox (line 23) | public FunctionTextbox(Textbox tb, string uniquename) method GetTypeCode (line 32) | public TypeCode GetTypeCode() method IsConstant (line 37) | public Task IsConstant() method ConstantOptimization (line 42) | public Task ConstantOptimization() method Evaluate (line 48) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 53) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 59) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 65) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 71) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 77) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 83) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionTotalPages.cs class FunctionTotalPages (line 13) | [Serializable] method FunctionTotalPages (line 19) | public FunctionTotalPages() method GetTypeCode (line 23) | public TypeCode GetTypeCode() method IsConstant (line 28) | public Task IsConstant() method ConstantOptimization (line 33) | public Task ConstantOptimization() method Evaluate (line 39) | public Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 44) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 49) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 54) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 61) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 67) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 73) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionUnaryMinus.cs class FunctionUnaryMinus (line 15) | [Serializable] method FunctionUnaryMinus (line 23) | public FunctionUnaryMinus() method FunctionUnaryMinus (line 28) | public FunctionUnaryMinus(IExpr r) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method IsConstant (line 38) | public async Task IsConstant() method ConstantOptimization (line 43) | public async Task ConstantOptimization() method Evaluate (line 53) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 58) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 65) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 72) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 79) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 85) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 91) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionUnaryMinusDecimal.cs class FunctionUnaryMinusDecimal (line 15) | [Serializable] method FunctionUnaryMinusDecimal (line 23) | public FunctionUnaryMinusDecimal() method FunctionUnaryMinusDecimal (line 28) | public FunctionUnaryMinusDecimal(IExpr r) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method IsConstant (line 38) | public async Task IsConstant() method ConstantOptimization (line 43) | public async Task ConstantOptimization() method Evaluate (line 56) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 61) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 68) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 75) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 82) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 88) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 94) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionUnaryMinusInteger.cs class FunctionUnaryMinusInteger (line 15) | [Serializable] method FunctionUnaryMinusInteger (line 23) | public FunctionUnaryMinusInteger() method FunctionUnaryMinusInteger (line 28) | public FunctionUnaryMinusInteger(IExpr r) method GetTypeCode (line 33) | public TypeCode GetTypeCode() method IsConstant (line 38) | public async Task IsConstant() method ConstantOptimization (line 43) | public async Task ConstantOptimization() method Evaluate (line 56) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 61) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateInt32 (line 68) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateDecimal (line 75) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateString (line 82) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 88) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 94) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionUserCollection.cs class FunctionUserCollection (line 17) | [Serializable] method FunctionUserCollection (line 26) | public FunctionUserCollection(IDictionary user, IExpr arg) method GetTypeCode (line 32) | public virtual TypeCode GetTypeCode() method IsConstant (line 37) | public virtual Task IsConstant() method ConstantOptimization (line 42) | public virtual async Task ConstantOptimization() method Evaluate (line 63) | public virtual async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 83) | public virtual async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 90) | public virtual async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 97) | public virtual async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 104) | public virtual async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 111) | public virtual async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 118) | public virtual async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionUserID.cs class FunctionUserID (line 13) | [Serializable] method FunctionUserID (line 19) | public FunctionUserID() method GetTypeCode (line 23) | public TypeCode GetTypeCode() method IsConstant (line 28) | public Task IsConstant() method ConstantOptimization (line 33) | public Task ConstantOptimization() method Evaluate (line 39) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 44) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 50) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 57) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 63) | public Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 71) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 77) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/FunctionUserLanguage.cs class FunctionUserLanguage (line 15) | [Serializable] method FunctionUserLanguage (line 21) | public FunctionUserLanguage() method GetTypeCode (line 25) | public TypeCode GetTypeCode() method IsConstant (line 30) | public Task IsConstant() method ConstantOptimization (line 35) | public Task ConstantOptimization() method Evaluate (line 41) | public async Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 46) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 51) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 56) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 60) | public Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 68) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 73) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/ICacheData.cs type ICacheData (line 12) | internal interface ICacheData method ClearCache (line 14) | void ClearCache(Report rpt); FILE: RdlEngine/Functions/IExpr.cs type IExpr (line 13) | internal interface IExpr method GetTypeCode (line 15) | TypeCode GetTypeCode(); method IsConstant (line 16) | Task IsConstant(); method ConstantOptimization (line 17) | Task ConstantOptimization(); method Evaluate (line 20) | Task Evaluate(Report r, Row row); method EvaluateString (line 21) | Task EvaluateString(Report r, Row row); method EvaluateDouble (line 22) | Task EvaluateDouble(Report r, Row row); method EvaluateDecimal (line 23) | Task EvaluateDecimal(Report r, Row row); method EvaluateInt32 (line 24) | Task EvaluateInt32(Report r, Row row); method EvaluateDateTime (line 25) | Task EvaluateDateTime(Report r, Row row); method EvaluateBoolean (line 26) | Task EvaluateBoolean(Report r, Row row); FILE: RdlEngine/Functions/Identifier.cs class Identifier (line 15) | [Serializable] method Identifier (line 23) | public Identifier(string v) method GetTypeCode (line 37) | public TypeCode GetTypeCode() method IsConstant (line 42) | public Task IsConstant() method ConstantOptimization (line 47) | public Task ConstantOptimization() method Evaluate (line 52) | public Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 57) | public async Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 62) | public async Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 67) | public async Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 72) | public async Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 77) | public async Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 82) | public async Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/IdentifierKey.cs type IdentifierKeyEnum (line 15) | public enum IdentifierKeyEnum class IdentifierKey (line 27) | [Serializable] method IdentifierKey (line 35) | public IdentifierKey(IdentifierKeyEnum v) method GetTypeCode (line 40) | public TypeCode GetTypeCode() method IsConstant (line 45) | public Task IsConstant() method ConstantOptimization (line 55) | public Task ConstantOptimization() method Evaluate (line 60) | public Task Evaluate(Report rpt, Row row) method EvaluateDouble (line 65) | public Task EvaluateDouble(Report rpt, Row row) method EvaluateDecimal (line 70) | public Task EvaluateDecimal(Report rpt, Row row) method EvaluateInt32 (line 75) | public Task EvaluateInt32(Report rpt, Row row) method EvaluateString (line 80) | public Task EvaluateString(Report rpt, Row row) method EvaluateDateTime (line 85) | public Task EvaluateDateTime(Report rpt, Row row) method EvaluateBoolean (line 90) | public Task EvaluateBoolean(Report rpt, Row row) FILE: RdlEngine/Functions/VBFunctions.cs class VBFunctions (line 17) | sealed public class VBFunctions method Year (line 24) | static public int Year(DateTime dt) method Weekday (line 33) | static public int Weekday(DateTime dt) method WeekdayNonAmerican (line 70) | public static int WeekdayNonAmerican(DateTime dt) method WeekdayNonAmerican (line 80) | public static int WeekdayNonAmerican(string dateString) method WeekdayName (line 93) | static public string WeekdayName(int d) method WeekdayName (line 104) | static public string WeekdayName(int d, bool bAbbreviation) method Day (line 115) | static public int Day(DateTime dt) method Month (line 125) | static public int Month(DateTime dt) method MonthName (line 135) | static public string MonthName(object m) method MonthName (line 146) | static public string MonthName(object m, bool bAbbreviation) method Hour (line 160) | static public int Hour(DateTime dt) method Minute (line 169) | static public int Minute(DateTime dt) method Second (line 179) | static public int Second(DateTime dt) method Today (line 188) | static public DateTime Today() method Asc (line 198) | static public int Asc(string o) method CBool (line 210) | static public bool CBool(object o) method CByte (line 219) | static public Byte CByte(string o) method CCur (line 228) | static public decimal CCur(string o) method CDate (line 237) | static public DateTime CDate(string o) method Chr (line 246) | static public char Chr(int o) method CInt (line 255) | static public int CInt(object o) method CLng (line 264) | static public long CLng(object o) method CSng (line 273) | static public Single CSng(object o) method CStr (line 282) | static public string CStr(object o) method Hex (line 291) | static public string Hex(long o) method Oct (line 300) | static public string Oct(long o) method CDbl (line 310) | static public double CDbl(Object o) method DateAdd (line 315) | static public DateTime DateAdd(string interval, double number, string ... method DateAdd (line 327) | static public DateTime DateAdd(string interval, double number, DateTim... method InStr (line 374) | static public int InStr(string string1, string string2) method InStr (line 385) | static public int InStr(int start, string string1, string string2) method InStr (line 396) | static public int InStr(string string1, string string2, int compare) method InStr (line 408) | static public int InStr(int start, string string1, string string2, int... method InStrRev (line 437) | static public int InStrRev(string string1, string string2) method InStrRev (line 448) | static public int InStrRev(string string1, string string2, int start) method InStrRev (line 460) | static public int InStrRev(string string1, string string2, int start, ... method IsNumeric (line 503) | static public bool IsNumeric(object expression) method LCase (line 534) | static public string LCase(string str) method Left (line 545) | static public string Left(string str, int count) method Len (line 558) | static public int Len(string str) method LTrim (line 568) | static public string LTrim(string str) method Mid (line 581) | static public string Mid(string str, int start) method Mid (line 599) | static public string Mid(string str, int start, int length) method Replace (line 620) | static public string Replace(string str, string find, string replacewith) method Replace (line 633) | static public string Replace(string str, string find, string replacewi... method Replace (line 647) | static public string Replace(string str, string find, string replacewi... method Replace (line 662) | static public string Replace(string str, string find, string replacewi... method Right (line 720) | static public string Right(string str, int length) method RTrim (line 735) | static public string RTrim(string str) method Space (line 747) | static public string Space(int length) method StrComp (line 759) | static public int StrComp(string string1, string string2) method StrComp (line 770) | static public int StrComp(string string1, string string2, int compare) method String (line 786) | static public string String(int length, string c) method String (line 798) | static public string String(int length, char c) method StrReverse (line 814) | static public string StrReverse(string str) method Trim (line 833) | static public string Trim(string str) method UCase (line 845) | static public string UCase(string str) method Round (line 854) | static public double Round(double n) method Round (line 864) | static public double Round(double n, int decimals) method Round (line 873) | static public decimal Round(decimal n) method Round (line 883) | static public decimal Round(decimal n, int decimals) method Round (line 888) | static public decimal Round(decimal n, int decimals, int rounding) method VbCrlf (line 897) | static public string VbCrlf() FILE: RdlEngine/GraphicsExtended.cs class GraphicsExtended (line 17) | public class GraphicsExtended method DrawStringJustified (line 20) | public static void DrawStringJustified(Draw.Graphics graphics, string s, method DrawStringJustified (line 27) | public static void DrawStringJustified(Draw.Graphics graphics, string ... class Word (line 303) | public class Word method Word (line 310) | public Word(string s) method Word (line 320) | public Word(string s, double length, bool startBold, bool stopBold, ... FILE: RdlEngine/PageDrawing.cs class PageDrawing (line 13) | public class PageDrawing method PageDrawing (line 25) | public PageDrawing() : this(null) method PageDrawing (line 29) | public PageDrawing(Pages pgs) method Draw (line 50) | public void Draw(Graphics g, int page, System.Drawing.Rectangle clipRe... method PixelsX (line 79) | internal float PixelsX(float x) method PixelsY (line 84) | internal float PixelsY(float y) method ProcessPage (line 90) | private void ProcessPage(Graphics g, IEnumerable p, RectangleF clipRec... method DrawBackground (line 198) | private void DrawBackground(Graphics g, System.Drawing.RectangleF rect... method DrawBorder (line 309) | private void DrawBorder(PageItem pi, Graphics g, RectangleF r) method DrawImage (line 329) | private void DrawImage(PageImage pi, Graphics g, RectangleF r) method DrawImageBackground (line 348) | private void DrawImageBackground(PageImage pi, StyleInfo si, Graphics ... method DrawImageSized (line 430) | private void DrawImageSized(PageImage pi, System.Drawing.Image im, Gra... method DrawLine (line 520) | private void DrawLine(Color c, BorderStyleEnum bs, float w, Graphics g, method DrawCurve (line 563) | private void DrawCurve(Color c, BorderStyleEnum bs, float w, Graphics g, method DrawEllipse (line 610) | private void DrawEllipse(PageEllipse pe, Graphics g, RectangleF r) method FillPolygon (line 643) | private void FillPolygon(PagePolygon pp, Graphics g, RectangleF r) method DrawPie (line 662) | private void DrawPie(PagePie pp, Graphics g, RectangleF r) method DrawString (line 696) | private void DrawString(PageText pt, Graphics g, RectangleF r) FILE: RdlEngine/RDLBaseEBN.cs class CrossDelegate (line 8) | public class CrossDelegate FILE: RdlEngine/RdlException.cs class RdlException (line 9) | public class RdlException : Exception method RdlException (line 11) | public RdlException(string message) : base(message) method RdlException (line 15) | public RdlException(string message, Exception innerException) : base(m... FILE: RdlEngine/RdlPrint.cs class RdlPrint (line 17) | public partial class RdlPrint method RdlPrint (line 42) | public RdlPrint() method Print (line 195) | public void Print(PrintDocument pd) method _Print (line 222) | private void _Print(PrintDocument pd) method PrintPage (line 247) | private void PrintPage(object sender, PrintPageEventArgs e) method GetReport (line 359) | private Report GetReport() method r_SubreportDataRetrieval (line 448) | void r_SubreportDataRetrieval(object sender, SubreportDataRetrievalEve... method GetReportEmptyMsg (line 454) | private string GetReportEmptyMsg() method GetReportErrorMsg (line 460) | private string GetReportErrorMsg() method GetPages (line 550) | private Pages GetPages() method GetPages (line 559) | private Pages GetPages(Report report) method GetParameters (line 597) | private ListDictionary GetParameters() method GetRdlSource (line 622) | private string GetRdlSource() method LoadPageIfNeeded (line 644) | private void LoadPageIfNeeded() FILE: RdlEngine/Render/CompilationExtensions.cs class CompilationExtensions (line 8) | public static class CompilationExtensions method SetRGBColorFill (line 11) | public static void SetRGBColorFill(this PdfContentByte contentByte, in... method SetRGBColorStroke (line 16) | public static void SetRGBColorStroke(this PdfContentByte contentByte, ... method SetRGBColorStrokeF (line 21) | public static void SetRGBColorStrokeF(this PdfContentByte contentByte,... FILE: RdlEngine/Render/DelimitedTextWriter.cs class DelimitedTextWriter (line 9) | internal class DelimitedTextWriter method WriteQuote (line 43) | protected void WriteQuote() method WriteDelimeter (line 48) | protected void WriteDelimeter() method DelimitedTextWriter (line 58) | public DelimitedTextWriter(TextWriter writer, string delimeter) method WriteQuoted (line 64) | private void WriteQuoted(object value) method WriteUnquoted (line 75) | private void WriteUnquoted(object value) method Write (line 83) | public void Write(object value) method Write (line 104) | public void Write(string format, params object[] arg) method WriteLine (line 109) | public void WriteLine() method WriteLine (line 115) | public void WriteLine(object value) method WriteLine (line 121) | public void WriteLine(string format, params object[] arg) FILE: RdlEngine/Render/ExcelConverter/ExcelCell.cs class ExcelCell (line 12) | internal class ExcelCell method ExcelCell (line 14) | public ExcelCell(ReportItem reportItem, string value, ExcelRow row, Ex... FILE: RdlEngine/Render/ExcelConverter/ExcelCellStyle.cs class ExcelCellStyle (line 15) | public class ExcelCellStyle method ExcelCellStyle (line 17) | public ExcelCellStyle() method ExcelCellStyle (line 21) | public ExcelCellStyle(StyleInfo fromStyle) method SetToStyle (line 42) | public void SetToStyle(XSSFCellStyle style) method SetToFont (line 74) | public void SetToFont(XSSFFont font) method SetFontWeight (line 87) | public void SetFontWeight(FontWeightEnum weight) method SetFontStyle (line 98) | public void SetFontStyle(FontStyleEnum style) method SetTextDecoration (line 109) | public void SetTextDecoration(TextDecorationEnum textDecor) method SetFontColor (line 128) | public void SetFontColor(Drawing.Color color) method SetTextAlign (line 142) | public void SetTextAlign(TextAlignEnum textAlign) method SetVerticalAlign (line 153) | public void SetVerticalAlign(VerticalAlignEnum vertAlign) method SetBackgroundColor (line 165) | public void SetBackgroundColor(Drawing.Color color) method SetBorderTop (line 184) | public void SetBorderTop(Majorsilence.Reporting.Rdl.BorderStyleEnum st... method SetBorderTop (line 189) | public void SetBorderTop(Majorsilence.Reporting.Rdl.BorderStyleEnum st... method SetBorderRight (line 215) | public void SetBorderRight(Majorsilence.Reporting.Rdl.BorderStyleEnum ... method SetBorderRight (line 220) | public void SetBorderRight(Majorsilence.Reporting.Rdl.BorderStyleEnum ... method SetBorderBottom (line 248) | public void SetBorderBottom(Majorsilence.Reporting.Rdl.BorderStyleEnum... method SetBorderBottom (line 253) | public void SetBorderBottom(Majorsilence.Reporting.Rdl.BorderStyleEnum... method SetBorderLeft (line 279) | public void SetBorderLeft(Majorsilence.Reporting.Rdl.BorderStyleEnum s... method SetBorderLeft (line 284) | public void SetBorderLeft(Majorsilence.Reporting.Rdl.BorderStyleEnum s... method SetWritingMode (line 307) | public void SetWritingMode(WritingModeEnum writingMode) method CompareWithXSSFFont (line 312) | public bool CompareWithXSSFFont(XSSFFont font) method CompareWithXSSFStyle (line 338) | public bool CompareWithXSSFStyle(XSSFCellStyle style) method CompareColor (line 391) | private bool CompareColor(XSSFColor c1, XSSFColor c2) method ConvertBorderStyle (line 406) | public BorderStyle ConvertBorderStyle(Majorsilence.Reporting.Rdl.Borde... method ConvertFontWeight (line 431) | public short ConvertFontWeight(FontWeightEnum weight) method ConvertVerticalAlignment (line 460) | public VerticalAlignment ConvertVerticalAlignment(VerticalAlignEnum va) method ConvertHorizontalAlignment (line 472) | public HorizontalAlignment ConvertHorizontalAlignment(TextAlignEnum ha) method ColorToByteArray (line 486) | private byte[] ColorToByteArray(Drawing.Color color) FILE: RdlEngine/Render/ExcelConverter/ExcelCellsBuilder.cs class ExcelCellsBuilder (line 17) | internal class ExcelCellsBuilder method ExcelCellsBuilder (line 33) | public ExcelCellsBuilder() method AddImage (line 46) | public void AddImage(Majorsilence.Reporting.Rdl.Image image, int pictu... method AddLine (line 60) | public void AddLine(Majorsilence.Reporting.Rdl.Line line, float border... method AddTable (line 81) | public void AddTable(Table table) method AddRow (line 108) | public async Task AddRow(TableRow tr, Row row) method FillAbsolutePosition (line 157) | private void FillAbsolutePosition(ReportItem reportItem, ref float top... method AddTextbox (line 170) | public async Task AddTextbox(Textbox reportItem, string value, Row row) method SetCellStyle (line 206) | private async Task SetCellStyle(ExcelCell excelCell, ReportItem report... method GetCellAboveRelativePosition (line 218) | public float GetCellAboveRelativePosition(float top) method AddRow (line 241) | public ExcelRow AddRow(float top, float height) method AddColumn (line 263) | private ExcelColumn AddColumn(float left, float width){ method GetRightAttachColumn (line 283) | public ExcelColumn GetRightAttachColumn(ExcelCell cell) method GetRightAttachCells (line 290) | public int GetRightAttachCells(ExcelCell cell) method GetBottomAttachCells (line 305) | public int GetBottomAttachCells(ExcelCell cell) method GetBottomAttachRow (line 319) | public ExcelRow GetBottomAttachRow(ExcelCell cell) method GetRowAtPosition (line 326) | private ExcelRow GetRowAtPosition(float yPositionPoints) method GetColumnAtPosition (line 331) | private ExcelColumn GetColumnAtPosition(float xPositionPoints) method InsertRow (line 336) | private int InsertRow(float yPositionPoints) method InsertColumn (line 352) | private int InsertColumn(float xPositionPoints) method ResolveIntersectionConflict (line 368) | private bool ResolveIntersectionConflict(ExcelCell A, ExcelCell B) method ResolveIntersectionConflict (line 378) | private bool ResolveIntersectionConflict(ExcelCell A, float BLeft, flo... method CutCellWidthFromLeft (line 514) | private void CutCellWidthFromLeft(ExcelCell cell, float toPos) method CutCellWidthFromRight (line 545) | private void CutCellWidthFromRight(ExcelCell cell, float toPos) method CutCellHeight (line 560) | private void CutCellHeight(ExcelCell cell, float toPos) method RemoveCell (line 575) | private void RemoveCell(ExcelCell cell) method Intersection (line 582) | private bool Intersection(double ax1, double ay1, double ax2, double a... method CellsCorrection (line 593) | public void CellsCorrection() method ShiftBottomRows (line 637) | private void ShiftBottomRows(IEnumerable rows, float yOffset) FILE: RdlEngine/Render/ExcelConverter/ExcelColumn.cs class ExcelColumn (line 7) | internal class ExcelColumn method ExcelColumn (line 12) | public ExcelColumn(float xPos) FILE: RdlEngine/Render/ExcelConverter/ExcelImage.cs class ExcelImage (line 8) | internal class ExcelImage method ExcelImage (line 28) | public ExcelImage(Image image, int imageIndex) FILE: RdlEngine/Render/ExcelConverter/ExcelLine.cs class ExcelLine (line 6) | internal class ExcelLine method ExcelLine (line 8) | public ExcelLine(Line line) FILE: RdlEngine/Render/ExcelConverter/ExcelRow.cs class ExcelRow (line 7) | internal class ExcelRow method ExcelRow (line 13) | public ExcelRow(float yPos) FILE: RdlEngine/Render/ExcelConverter/ExcelTable.cs class ExcelTable (line 6) | internal class ExcelTable FILE: RdlEngine/Render/HtmlConverter/RenderHtmlTable.cs class RenderHtmlTable (line 27) | internal class RenderHtmlTable : IPresent method RenderHtmlTable (line 46) | public RenderHtmlTable(Report rep, IStreamGen sg) method Dispose (line 56) | public void Dispose() method Report (line 66) | public Report Report() method IsPagingNeeded (line 99) | public bool IsPagingNeeded() method Start (line 104) | public void Start() method FixupRelativeName (line 115) | string FixupRelativeName(string relativeName) method ScriptGenerate (line 128) | private void ScriptGenerate(TextWriter ftw) method Action (line 344) | private async Task Action(Action a, Row r, string t, string to... method Bookmark (line 407) | private string Bookmark(string bm, string t) method CssGenerate (line 416) | private void CssGenerate(TextWriter ftw) method CssAdd (line 437) | private async Task CssAdd(Style s, ReportLink rl, Row row) method CssAdd (line 442) | private async Task CssAdd(Style s, ReportLink rl, Row row, boo... method CssAdd (line 446) | private async Task CssAdd(Style s, ReportLink rl, Row row, boo... method CssPosition (line 475) | private string CssPosition(ReportLink rl, Row row, bool bForceRelative... method CssPrefix (line 551) | private string CssPrefix(Style s, ReportLink rl) method End (line 619) | public async Task End() method BodyStart (line 689) | public void BodyStart(Body b) method BodyEnd (line 695) | public void BodyEnd(Body b) method PageHeaderStart (line 701) | public void PageHeaderStart(PageHeader ph) method PageHeaderEnd (line 707) | public void PageHeaderEnd(PageHeader ph) method PageFooterStart (line 713) | public void PageFooterStart(PageFooter pf) method PageFooterEnd (line 719) | public void PageFooterEnd(PageFooter pf) method Textbox (line 725) | public async Task Textbox(Textbox tb, string t, Row row) method DataRegionNoRows (line 774) | public async Task DataRegionNoRows(DataRegion d, string noRowsMsg) ... method ListStart (line 798) | public async Task ListStart(List l, Row r) method ListEnd (line 807) | public async Task ListEnd(List l, Row r) method ListEntryBegin (line 814) | public async Task ListEntryBegin(List l, Row r) method ListEntryEnd (line 821) | public void ListEntryEnd(List l, Row r) method TableStart (line 828) | public async Task TableStart(Table t, Row row) method IsTableSortable (line 852) | public bool IsTableSortable(Table t) method TableEnd (line 878) | public async Task TableEnd(Table t, Row row) method TableBodyStart (line 887) | public void TableBodyStart(Table t, Row row) method TableBodyEnd (line 892) | public void TableBodyEnd(Table t, Row row) method TableFooterStart (line 897) | public void TableFooterStart(Footer f, Row row) method TableFooterEnd (line 902) | public void TableFooterEnd(Footer f, Row row) method TableHeaderStart (line 907) | public void TableHeaderStart(Header h, Row row) method TableHeaderEnd (line 912) | public void TableHeaderEnd(Header h, Row row) method TableRowStart (line 917) | public async Task TableRowStart(TableRow tr, Row row) method TableRowEnd (line 953) | public void TableRowEnd(TableRow tr, Row row) method TableCellStart (line 958) | public async Task TableCellStart(TableCell t, Row row) method SortType (line 1030) | private string SortType(TableCell tc, Textbox tb) method TableCellEnd (line 1097) | public void TableCellEnd(TableCell t, Row row) method MatrixStart (line 1112) | public async Task MatrixStart(Matrix m, MatrixCellEntry[,] matri... method MatrixColumns (line 1125) | public void MatrixColumns(Matrix m, MatrixColumns mc) // called just... method MatrixCellStart (line 1129) | public async Task MatrixCellStart(Matrix m, ReportItem ri, int row, in... method MatrixCellEnd (line 1165) | public Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column... method MatrixRowStart (line 1179) | public void MatrixRowStart(Matrix m, int row, Row r) method MatrixRowEnd (line 1186) | public void MatrixRowEnd(Matrix m, int row, Row r) method MatrixEnd (line 1191) | public async Task MatrixEnd(Matrix m, Row r) // called last method Chart (line 1201) | public async Task Chart(Chart c, Row r, ChartBase cb) method Image (line 1244) | public async Task Image(Image i, Row r, string mimeType, Stream ioin) method Line (line 1326) | public async Task Line(Line l, Row r) method RectangleStart (line 1377) | public async Task RectangleStart(Rdl.Rectangle rect, Row r) method RectangleEnd (line 1395) | public async Task RectangleEnd(Rdl.Rectangle rect, Row r) method Subreport (line 1405) | public async Task Subreport(Subreport s, Row r) method GroupingStart (line 1416) | public void GroupingStart(Grouping g) // called at start of ... method GroupingInstanceStart (line 1419) | public void GroupingInstanceStart(Grouping g) // called at start for... method GroupingInstanceEnd (line 1422) | public void GroupingInstanceEnd(Grouping g) // called at start for eac... method GroupingEnd (line 1425) | public void GroupingEnd(Grouping g) // called at end of grouping method RunPages (line 1428) | public Task RunPages(Pages pgs) // we don't have paging turned on for ... class CssCacheEntry2 (line 1435) | class CssCacheEntry2 method CssCacheEntry2 (line 1440) | public CssCacheEntry2(string css, string name) FILE: RdlEngine/Render/HtmlConverter/TablePositioner.cs class TablePositioner (line 24) | internal class TablePositioner method TablePositioner (line 31) | public TablePositioner(Report rpt, ReportItems ris) method BuildTable (line 40) | private string BuildTable() method TableWidth (line 73) | private float TableWidth() method CompareRIsByX (line 86) | private static int CompareRIsByX(ReportItem x, ReportItem y) method CompareRIsByY (line 109) | private static int CompareRIsByY(ReportItem x, ReportItem y) FILE: RdlEngine/Render/IPresent.cs type IPresent (line 14) | internal interface IPresent : IDisposable method IsPagingNeeded (line 17) | bool IsPagingNeeded(); method Start (line 20) | void Start(); method End (line 21) | Task End(); method RunPages (line 24) | Task RunPages(Pages pgs); method BodyStart (line 27) | void BodyStart(Body b); method BodyEnd (line 28) | void BodyEnd(Body b); method PageHeaderStart (line 31) | void PageHeaderStart(PageHeader ph); method PageHeaderEnd (line 32) | void PageHeaderEnd(PageHeader ph); method PageFooterStart (line 35) | void PageFooterStart(PageFooter pf); method PageFooterEnd (line 36) | void PageFooterEnd(PageFooter pf); method Textbox (line 39) | Task Textbox(Textbox tb, string t, Row r); method DataRegionNoRows (line 40) | Task DataRegionNoRows(DataRegion d, string noRowsMsg); method ListStart (line 43) | Task ListStart(List l, Row r); method ListEnd (line 44) | Task ListEnd(List l, Row r); method ListEntryBegin (line 45) | Task ListEntryBegin(List l, Row r); method ListEntryEnd (line 46) | void ListEntryEnd(List l, Row r); method TableStart (line 49) | Task TableStart(Table t, Row r); method TableEnd (line 50) | Task TableEnd(Table t, Row r); method TableBodyStart (line 51) | void TableBodyStart(Table t, Row r); method TableBodyEnd (line 52) | void TableBodyEnd(Table t, Row r); method TableFooterStart (line 53) | void TableFooterStart(Footer f, Row r); method TableFooterEnd (line 54) | void TableFooterEnd(Footer f, Row r); method TableHeaderStart (line 55) | void TableHeaderStart(Header h, Row r); method TableHeaderEnd (line 56) | void TableHeaderEnd(Header h, Row r); method TableRowStart (line 57) | Task TableRowStart(TableRow tr, Row r); method TableRowEnd (line 58) | void TableRowEnd(TableRow tr, Row r); method TableCellStart (line 59) | Task TableCellStart(TableCell t, Row r); method TableCellEnd (line 60) | void TableCellEnd(TableCell t, Row r); method MatrixStart (line 63) | Task MatrixStart(Matrix m, MatrixCellEntry[,] matrix, Row r, int... method MatrixColumns (line 64) | void MatrixColumns(Matrix m, MatrixColumns mc); method MatrixRowStart (line 65) | void MatrixRowStart(Matrix m, int row, Row r); method MatrixRowEnd (line 66) | void MatrixRowEnd(Matrix m, int row, Row r); method MatrixCellStart (line 67) | Task MatrixCellStart(Matrix m, ReportItem ri, int row, int column, Row... method MatrixCellEnd (line 68) | Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column, Row r); method MatrixEnd (line 69) | Task MatrixEnd(Matrix m, Row r); method Chart (line 72) | Task Chart(Chart c, Row r, ChartBase cb); method Image (line 75) | Task Image(Image i, Row r, string mimeType, Stream io); method Line (line 78) | Task Line(Line l, Row r); method RectangleStart (line 81) | Task RectangleStart(Rectangle rect, Row r); method RectangleEnd (line 82) | Task RectangleEnd(Rectangle rect, Row r); method Subreport (line 85) | Task Subreport(Subreport s, Row r); method GroupingStart (line 88) | void GroupingStart(Grouping g); method GroupingInstanceStart (line 89) | void GroupingInstanceStart(Grouping g); method GroupingInstanceEnd (line 90) | void GroupingInstanceEnd(Grouping g); method GroupingEnd (line 91) | void GroupingEnd(Grouping g); method Report (line 93) | Report Report(); FILE: RdlEngine/Render/IStreamGen.cs type IStreamGen (line 14) | public interface IStreamGen method GetStream (line 16) | Stream GetStream(); method GetTextWriter (line 17) | TextWriter GetTextWriter(); method GetIOStream (line 18) | Stream GetIOStream(out string relativeName, string extension); method CloseMainStream (line 19) | void CloseMainStream(); FILE: RdlEngine/Render/MemoryStreamGen.cs class MemoryStreamGen (line 19) | public class MemoryStreamGen : IStreamGen, IDisposable method MemoryStreamGen (line 31) | public MemoryStreamGen() : this(null, null, null) {} method MemoryStreamGen (line 32) | public MemoryStreamGen(string prefix, string suffix, string extension) method GetText (line 54) | public string GetText() method CloseMainStream (line 83) | public void CloseMainStream() method GetStream (line 89) | public Stream GetStream() method SetStream (line 94) | public void SetStream(MemoryStream input) method GetTextWriter (line 99) | public TextWriter GetTextWriter() method GetIOStream (line 115) | public Stream GetIOStream(out string relativeName, string extension) method Dispose (line 137) | public void Dispose() FILE: RdlEngine/Render/MhtConverter/MhtBuilder.cs class MhtBuilder (line 53) | public class MhtBuilder type FileStorage (line 73) | public enum FileStorage method MhtBuilder (line 82) | public MhtBuilder() method AppendMhtBinaryFile (line 203) | void AppendMhtBinaryFile(MhtWebFile ef) method AppendMhtBoundary (line 231) | void AppendMhtBoundary() method AppendMhtFinalBoundary (line 240) | void AppendMhtFinalBoundary() method AppendMhtFile (line 249) | void AppendMhtFile(MhtWebFile ef) method AppendMhtFiles (line 266) | void AppendMhtFiles() method AppendMhtHeader (line 276) | void AppendMhtHeader(MhtWebFile ef) method AppendMhtLine (line 313) | void AppendMhtLine() method AppendMhtLine (line 321) | void AppendMhtLine(string s) method AppendMhtTextFile (line 331) | void AppendMhtTextFile(MhtWebFile ef) method DownloadHtmlFile (line 346) | async Task DownloadHtmlFile(string url) method FinalizeMht (line 360) | string FinalizeMht() method FinalizeMht (line 370) | void FinalizeMht(string outputFilePath) method IsDirectory (line 381) | bool IsDirectory(string FilePath) method ValidateFilename (line 390) | void ValidateFilename(string FilePath, string fileExtensions) method GetPageArchive (line 414) | public async Task GetPageArchive() method GetPageArchive (line 425) | public async Task GetPageArchive(string url) method SavePageArchive (line 446) | public async Task SavePageArchive(string outputFilePath) method SavePageArchive (line 459) | public async Task SavePageArchive(string outputFilePath, strin... method QuotedPrintableEncode (line 488) | string QuotedPrintableEncode(string s, Encoding e) FILE: RdlEngine/Render/MhtConverter/MhtWebClientLocal.cs class MhtWebClientLocal (line 38) | class MhtWebClientLocal type HttpContentEncoding (line 51) | enum HttpContentEncoding method MhtWebClientLocal (line 174) | public MhtWebClientLocal() method Clear (line 186) | public void Clear() method ClearDownload (line 196) | public void ClearDownload() method DownloadBytes (line 207) | public async Task DownloadBytes(string url) method GetUrlData (line 215) | public async Task GetUrlData(string url) method CharsetToEncoding (line 289) | private Encoding CharsetToEncoding(string charset) method DetectEncoding (line 310) | private Encoding DetectEncoding(string contentTypeHeader, byte[] respo... method SaveResponseToFile (line 333) | private void SaveResponseToFile(string filePath) class ExtendedBinaryReader (line 353) | public class ExtendedBinaryReader : BinaryReader method ExtendedBinaryReader (line 359) | public ExtendedBinaryReader(Stream Input) : base(Input) method ExtendedBinaryReader (line 368) | public ExtendedBinaryReader(Stream Input, Encoding Encoding) : base(... method ReadToEnd (line 378) | public byte[] ReadToEnd() method ReadToEnd (line 393) | public byte[] ReadToEnd(int initialLength) FILE: RdlEngine/Render/MhtConverter/MhtWebFile.cs class MhtWebFile (line 43) | class MhtWebFile method MhtWebFile (line 68) | public MhtWebFile(MhtBuilder parent) method MhtWebFile (line 73) | public MhtWebFile(MhtBuilder parent, string url) method ConvertReferencesToLocal (line 398) | public void ConvertReferencesToLocal() method Download (line 435) | public async Task Download() method DownloadExternalFiles (line 460) | public async Task DownloadExternalFiles() method DownloadExternalFiles (line 469) | public async Task DownloadExternalFiles(bool recursive) method SaveAsTextFile (line 477) | public void SaveAsTextFile() method SaveAsTextFile (line 485) | public void SaveAsTextFile(string filePath) method SaveToFile (line 493) | public void SaveToFile() method SaveToFile (line 501) | public void SaveToFile(string filePath) method ToString (line 509) | public override string ToString() method ToTextString (line 530) | public string ToTextString(bool removeWhitespace /* = false */) method AddMatchesToCollection (line 564) | void AddMatchesToCollection(string s, Regex r, ref NameValueCollection... method ConvertRelativeToAbsoluteRefs (line 601) | string ConvertRelativeToAbsoluteRefs(string html) method DeriveFilename (line 635) | string DeriveFilename(string FilePath, string html, string fileExtension) method DownloadBytes (line 657) | async Task DownloadBytes() method DownloadExternalFile (line 691) | async Task DownloadExternalFile(string url, string targetFolder, bool ... method DownloadExternalFiles (line 726) | async Task DownloadExternalFiles(string targetFolder, bool recursive) method ExtensionFromContentType (line 745) | string ExtensionFromContentType() method ExternalHtmlFiles (line 781) | NameValueCollection ExternalHtmlFiles() method FilenameFromUrl (line 825) | string FilenameFromUrl() method IsDirectory (line 858) | bool IsDirectory(string FilePath) method MakeValidFilename (line 866) | string MakeValidFilename(string s, bool enforceLength /* = false */) method ProcessCss (line 903) | string ProcessCss(string css) method ProcessHtml (line 911) | string ProcessHtml(string html) method ResolveUrl (line 953) | string ResolveUrl(string url) method SaveToFile (line 979) | void SaveToFile(string filePath, bool asText) method SetUrl (line 996) | void SetUrl(string url, bool validate) method StripHtmlTag (line 1015) | string StripHtmlTag(string tagName, string html) method HtmlDecode (line 1023) | string HtmlDecode(string s) method HtmlLookup (line 1092) | char HtmlLookup(string entity) FILE: RdlEngine/Render/OneFileStreamGen.cs class OneFileStreamGen (line 20) | public class OneFileStreamGen : IStreamGen, IDisposable method OneFileStreamGen (line 30) | public OneFileStreamGen(string filename, bool bOverwrite) method CloseMainStream (line 54) | public void CloseMainStream() method GetStream (line 69) | public Stream GetStream() method GetTextWriter (line 74) | public TextWriter GetTextWriter() method GetIOStream (line 84) | public Stream GetIOStream(out string relativeName, string extension) method Dispose (line 116) | public void Dispose() FILE: RdlEngine/Render/PdfPageSize.cs type PdfPageSize (line 7) | internal struct PdfPageSize method PdfPageSize (line 16) | internal PdfPageSize(int width,int height) method SetMargins (line 25) | internal void SetMargins(int L,int T,int R,int B) FILE: RdlEngine/Render/ProcessReport.cs type OutputPresentationType (line 16) | public enum OutputPresentationType class ProcessReport (line 37) | [Serializable] method ProcessReport (line 43) | public ProcessReport(Report rep, IStreamGen sg) method ProcessReport (line 52) | public ProcessReport(Report rep) method Run (line 62) | public async Task Run(IDictionary parms, OutputPresentationType type) FILE: RdlEngine/Render/RenderBase.cs method AddLine (line 80) | internal protected void AddLine(float x, float y, float x2, float y2, St... method CreateDocument (line 88) | internal abstract protected void CreateDocument(); method EndDocument (line 89) | internal abstract protected void EndDocument(Stream sg); method CreatePage (line 90) | internal abstract protected void CreatePage(); method AfterProcessPage (line 91) | internal abstract protected void AfterProcessPage(); method AddBookmark (line 92) | internal abstract protected void AddBookmark(PageText pt); method AddLine (line 94) | internal abstract protected void AddLine(float x, float y, float x2, flo... method AddImage (line 101) | internal abstract protected void AddImage(string name, StyleInfo si, method AddPolygon (line 112) | internal abstract protected void AddPolygon(Draw2.PointF[] pts, StyleInf... method AddRectangle (line 119) | internal abstract protected void AddRectangle(float x, float y, float he... method AddPie (line 124) | internal abstract protected void AddPie(float x, float y, float height, ... method AddCurve (line 130) | internal abstract protected void AddCurve(Draw2.PointF[] pts, StyleInfo ... method AddEllipse (line 135) | internal abstract protected void AddEllipse(float x, float y, float heig... method AddText (line 143) | internal abstract protected void AddText(float x, float y, float height,... method Dispose (line 148) | public void Dispose() { } method RenderBase (line 151) | public RenderBase(Report rep, IStreamGen sg) method Report (line 157) | public Report Report() method IsPagingNeeded (line 162) | public bool IsPagingNeeded() method Start (line 167) | public void Start() method End (line 172) | public Task End() method RunPages (line 178) | public async Task RunPages(Pages pgs) // this does all the work type WordStartFinish (line 661) | struct WordStartFinish FILE: RdlEngine/Render/RenderCsv.cs class RenderCsv (line 16) | internal class RenderCsv : IPresent method RenderCsv (line 21) | public RenderCsv(Report report, IStreamGen sg) method Dispose (line 27) | public void Dispose() { } method Report (line 29) | public Report Report() method IsPagingNeeded (line 34) | public bool IsPagingNeeded() method Start (line 39) | public void Start() method End (line 43) | public Task End() method RunPages (line 48) | public Task RunPages(Pages pgs) method BodyStart (line 53) | public void BodyStart(Body b) method BodyEnd (line 57) | public void BodyEnd(Body b) method PageHeaderStart (line 61) | public void PageHeaderStart(PageHeader ph) method PageHeaderEnd (line 65) | public void PageHeaderEnd(PageHeader ph) method PageFooterStart (line 70) | public void PageFooterStart(PageFooter pf) method PageFooterEnd (line 74) | public void PageFooterEnd(PageFooter pf) method Textbox (line 79) | public async Task Textbox(Textbox tb, string t, Row r) method DataRegionNoRows (line 85) | public Task DataRegionNoRows(DataRegion d, string noRowsMsg) method ListStart (line 90) | public Task ListStart(List l, Row r) method ListEnd (line 95) | public Task ListEnd(List l, Row r) method ListEntryBegin (line 101) | public Task ListEntryBegin(List l, Row r) method ListEntryEnd (line 105) | public void ListEntryEnd(List l, Row r) method TableStart (line 110) | public Task TableStart(Table t, Row r) method TableEnd (line 115) | public Task TableEnd(Table t, Row r) method TableBodyStart (line 120) | public void TableBodyStart(Table t, Row r) method TableBodyEnd (line 124) | public void TableBodyEnd(Table t, Row r) method TableFooterStart (line 128) | public void TableFooterStart(Footer f, Row r) method TableFooterEnd (line 132) | public void TableFooterEnd(Footer f, Row r) method TableHeaderStart (line 136) | public void TableHeaderStart(Header h, Row r) method TableHeaderEnd (line 140) | public void TableHeaderEnd(Header h, Row r) method TableRowStart (line 144) | public Task TableRowStart(TableRow tr, Row r) method TableRowEnd (line 149) | public void TableRowEnd(TableRow tr, Row r) method TableCellStart (line 154) | public Task TableCellStart(TableCell t, Row r) method TableCellEnd (line 159) | public void TableCellEnd(TableCell t, Row r) method MatrixStart (line 163) | public Task MatrixStart(Matrix m, MatrixCellEntry[,] matrix, Row... method MatrixColumns (line 168) | public void MatrixColumns(Matrix m, MatrixColumns mc) method MatrixRowStart (line 172) | public void MatrixRowStart(Matrix m, int row, Row r) method MatrixRowEnd (line 176) | public void MatrixRowEnd(Matrix m, int row, Row r) method MatrixCellStart (line 181) | public Task MatrixCellStart(Matrix m, ReportItem ri, int row, int colu... method MatrixCellEnd (line 186) | public Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column... method MatrixEnd (line 191) | public Task MatrixEnd(Matrix m, Row r) method Chart (line 196) | public Task Chart(Chart c, Row r, ChartBase cb) method Image (line 201) | public Task Image(Image i, Row r, string mimeType, Stream io) method Line (line 206) | public Task Line(Line l, Row r) method RectangleStart (line 211) | public Task RectangleStart(Rectangle rect, Row r) method RectangleEnd (line 216) | public Task RectangleEnd(Rectangle rect, Row r) method Subreport (line 221) | public Task Subreport(Subreport s, Row r) method GroupingStart (line 226) | public void GroupingStart(Grouping g) method GroupingInstanceStart (line 230) | public void GroupingInstanceStart(Grouping g) method GroupingInstanceEnd (line 234) | public void GroupingInstanceEnd(Grouping g) method GroupingEnd (line 238) | public void GroupingEnd(Grouping g) FILE: RdlEngine/Render/RenderExcel2007.cs class RenderExcel2007 (line 20) | internal class RenderExcel2007 : IPresent method RenderExcel2007 (line 34) | public RenderExcel2007(Report rep, IStreamGen sg) method Dispose (line 57) | public void Dispose() method Report (line 63) | public Report Report() method IsPagingNeeded (line 68) | public bool IsPagingNeeded() method Start (line 73) | public void Start() method End (line 78) | public virtual Task End() method CreateAnchor (line 203) | private XSSFClientAnchor CreateAnchor(float top, float right, float bo... method BodyStart (line 232) | public void BodyStart(Body b) method BodyEnd (line 236) | public void BodyEnd(Body b) method PageHeaderStart (line 240) | public void PageHeaderStart(PageHeader ph) method PageHeaderEnd (line 244) | public void PageHeaderEnd(PageHeader ph) method PageFooterStart (line 248) | public void PageFooterStart(PageFooter pf) method PageFooterEnd (line 252) | public void PageFooterEnd(PageFooter pf) method Textbox (line 256) | public async Task Textbox(Textbox tb, string t, Row row) method GetStyle (line 263) | private async Task GetStyle(ReportItem ri, Row row) method InTable (line 271) | private static bool InTable(ReportItem tb) method InList (line 284) | private static bool InList(ReportItem tb) method DataRegionNoRows (line 290) | public Task DataRegionNoRows(DataRegion d, string noRowsMsg) ... method ListStart (line 296) | public Task ListStart(List l, Row r) method ListEnd (line 301) | public Task ListEnd(List l, Row r) method ListEntryBegin (line 306) | public Task ListEntryBegin(List l, Row r) method ListEntryEnd (line 311) | public void ListEntryEnd(List l, Row r) method TableStart (line 316) | public async Task TableStart(Table t, Row row) method IsTableSortable (line 325) | public bool IsTableSortable(Table t) method TableEnd (line 330) | public Task TableEnd(Table t, Row row) method TableBodyStart (line 335) | public void TableBodyStart(Table t, Row row) method TableBodyEnd (line 339) | public void TableBodyEnd(Table t, Row row) method TableFooterStart (line 343) | public void TableFooterStart(Footer f, Row row) method TableFooterEnd (line 347) | public void TableFooterEnd(Footer f, Row row) method TableHeaderStart (line 351) | public void TableHeaderStart(Header h, Row row) method TableHeaderEnd (line 355) | public void TableHeaderEnd(Header h, Row row) method TableRowStart (line 359) | public async Task TableRowStart(TableRow tr, Row row) method TableRowEnd (line 364) | public void TableRowEnd(TableRow tr, Row row) method TableCellStart (line 368) | public Task TableCellStart(TableCell t, Row row) method TableCellEnd (line 373) | public void TableCellEnd(TableCell t, Row row) method MatrixStart (line 378) | public Task MatrixStart(Matrix m, MatrixCellEntry[,] matrix, Row... method MatrixColumns (line 383) | public void MatrixColumns(Matrix m, MatrixColumns mc) // called just... method MatrixCellStart (line 387) | public Task MatrixCellStart(Matrix m, ReportItem ri, int row, int colu... method MatrixCellEnd (line 392) | public Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column... method MatrixRowStart (line 397) | public void MatrixRowStart(Matrix m, int row, Row r) method MatrixRowEnd (line 401) | public void MatrixRowEnd(Matrix m, int row, Row r) method MatrixEnd (line 405) | public Task MatrixEnd(Matrix m, Row r) // called last method Chart (line 410) | public Task Chart(Chart c, Row row, ChartBase cb) method Image (line 414) | public async Task Image(Image i, Row r, string mimeType, Stream ioin) method Line (line 422) | public async Task Line(Line l, Row row) method RectangleStart (line 433) | public Task RectangleStart(Rdl.Rectangle rect, Row r) method RectangleEnd (line 438) | public Task RectangleEnd(Rdl.Rectangle rect, Row r) method Subreport (line 444) | public Task Subreport(Subreport s, Row r) method GroupingStart (line 448) | public void GroupingStart(Grouping g) // called at start of ... method GroupingInstanceStart (line 451) | public void GroupingInstanceStart(Grouping g) // called at start for... method GroupingInstanceEnd (line 454) | public void GroupingInstanceEnd(Grouping g) // called at start for eac... method GroupingEnd (line 457) | public void GroupingEnd(Grouping g) // called at end of grouping method RunPages (line 460) | public Task RunPages(Pages pgs) // we don't have paging turned on for ... FILE: RdlEngine/Render/RenderExcel2007DataOnly.cs class RenderExcel2007DataOnly (line 20) | internal class RenderExcel2007DataOnly : IPresent method RenderExcel2007DataOnly (line 31) | public RenderExcel2007DataOnly(Report rep, IStreamGen sg) method Dispose (line 52) | public void Dispose() method Report (line 58) | public Report Report() method IsPagingNeeded (line 63) | public bool IsPagingNeeded() method Start (line 68) | public void Start() method End (line 73) | public virtual Task End() method CreateAnchor (line 155) | private XSSFClientAnchor CreateAnchor(float top, float right, float bo... method BodyStart (line 184) | public void BodyStart(Body b) method BodyEnd (line 188) | public void BodyEnd(Body b) method PageHeaderStart (line 192) | public void PageHeaderStart(PageHeader ph) method PageHeaderEnd (line 196) | public void PageHeaderEnd(PageHeader ph) method PageFooterStart (line 200) | public void PageFooterStart(PageFooter pf) method PageFooterEnd (line 204) | public void PageFooterEnd(PageFooter pf) method Textbox (line 208) | public async Task Textbox(Textbox tb, string t, Row row) method DataRegionNoRows (line 215) | public Task DataRegionNoRows(DataRegion d, string noRowsMsg) ... method ListStart (line 221) | public Task ListStart(List l, Row r) method ListEnd (line 226) | public Task ListEnd(List l, Row r) method ListEntryBegin (line 231) | public Task ListEntryBegin(List l, Row r) method ListEntryEnd (line 236) | public void ListEntryEnd(List l, Row r) method TableStart (line 241) | public async Task TableStart(Table t, Row row) method IsTableSortable (line 250) | public bool IsTableSortable(Table t) method TableEnd (line 255) | public Task TableEnd(Table t, Row row) method TableBodyStart (line 260) | public void TableBodyStart(Table t, Row row) method TableBodyEnd (line 264) | public void TableBodyEnd(Table t, Row row) method TableFooterStart (line 268) | public void TableFooterStart(Footer f, Row row) method TableFooterEnd (line 272) | public void TableFooterEnd(Footer f, Row row) method TableHeaderStart (line 276) | public void TableHeaderStart(Header h, Row row) method TableHeaderEnd (line 280) | public void TableHeaderEnd(Header h, Row row) method TableRowStart (line 284) | public async Task TableRowStart(TableRow tr, Row row) method TableRowEnd (line 289) | public void TableRowEnd(TableRow tr, Row row) method TableCellStart (line 293) | public Task TableCellStart(TableCell t, Row row) method TableCellEnd (line 298) | public void TableCellEnd(TableCell t, Row row) method MatrixStart (line 303) | public Task MatrixStart(Matrix m, MatrixCellEntry[,] matrix, Row... method MatrixColumns (line 308) | public void MatrixColumns(Matrix m, MatrixColumns mc) // called just... method MatrixCellStart (line 312) | public Task MatrixCellStart(Matrix m, ReportItem ri, int row, int colu... method MatrixCellEnd (line 317) | public Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column... method MatrixRowStart (line 322) | public void MatrixRowStart(Matrix m, int row, Row r) method MatrixRowEnd (line 326) | public void MatrixRowEnd(Matrix m, int row, Row r) method MatrixEnd (line 330) | public Task MatrixEnd(Matrix m, Row r) // called last method Chart (line 335) | public Task Chart(Chart c, Row row, ChartBase cb) method Image (line 339) | public async Task Image(Image i, Row r, string mimeType, Stream ioin) method Line (line 347) | public async Task Line(Line l, Row row) method RectangleStart (line 358) | public Task RectangleStart(Rdl.Rectangle rect, Row r) method RectangleEnd (line 363) | public Task RectangleEnd(Rdl.Rectangle rect, Row r) method Subreport (line 369) | public Task Subreport(Subreport s, Row r) method GroupingStart (line 373) | public void GroupingStart(Grouping g) // called at start of ... method GroupingInstanceStart (line 376) | public void GroupingInstanceStart(Grouping g) // called at start for... method GroupingInstanceEnd (line 379) | public void GroupingInstanceEnd(Grouping g) // called at start for eac... method GroupingEnd (line 382) | public void GroupingEnd(Grouping g) // called at end of grouping method RunPages (line 385) | public Task RunPages(Pages pgs) // we don't have paging turned on for ... FILE: RdlEngine/Render/RenderHtml.cs class RenderHtml (line 25) | internal class RenderHtml: IPresent method RenderHtml (line 43) | public RenderHtml(Report rep, IStreamGen sg) method Dispose (line 52) | public void Dispose() method Report (line 62) | public Report Report() method IsPagingNeeded (line 95) | public bool IsPagingNeeded() method Start (line 100) | public void Start() method FixupRelativeName (line 105) | string FixupRelativeName(string relativeName) method ScriptGenerate (line 122) | private void ScriptGenerate(TextWriter ftw) method Action (line 338) | private async Task Action(Action a, Row r, string t, string to... method Bookmark (line 401) | private string Bookmark(string bm, string t) method CssGenerate (line 410) | private void CssGenerate(TextWriter ftw) method CssAdd (line 431) | private async Task CssAdd(Style s, ReportLink rl, Row row) method CssAdd (line 436) | private async Task CssAdd(Style s, ReportLink rl, Row row, boo... method CssAdd (line 440) | private async Task CssAdd(Style s, ReportLink rl, Row row, boo... method CssPosition (line 469) | private string CssPosition(ReportLink rl,Row row, bool bForceRelative,... method CssPrefix (line 547) | private string CssPrefix(Style s, ReportLink rl) method End (line 615) | public async Task End() method BodyStart (line 687) | public void BodyStart(Body b) method BodyEnd (line 693) | public void BodyEnd(Body b) method PageHeaderStart (line 699) | public void PageHeaderStart(PageHeader ph) method PageHeaderEnd (line 705) | public void PageHeaderEnd(PageHeader ph) method PageFooterStart (line 711) | public void PageFooterStart(PageFooter pf) method PageFooterEnd (line 717) | public void PageFooterEnd(PageFooter pf) method Textbox (line 723) | public async Task Textbox(Textbox tb, string t, Row row) method DataRegionNoRows (line 776) | public async Task DataRegionNoRows(DataRegion d, string noRowsMsg) /... method ListStart (line 799) | public async Task ListStart(List l, Row r) method ListEnd (line 808) | public async Task ListEnd(List l, Row r) method ListEntryBegin (line 815) | public async Task ListEntryBegin(List l, Row r) method ListEntryEnd (line 822) | public void ListEntryEnd(List l, Row r) method TableStart (line 829) | public async Task TableStart(Table t, Row row) method IsTableSortable (line 853) | public bool IsTableSortable(Table t) method TableEnd (line 879) | public async Task TableEnd(Table t, Row row) method TableBodyStart (line 888) | public void TableBodyStart(Table t, Row row) method TableBodyEnd (line 893) | public void TableBodyEnd(Table t, Row row) method TableFooterStart (line 898) | public void TableFooterStart(Footer f, Row row) method TableFooterEnd (line 903) | public void TableFooterEnd(Footer f, Row row) method TableHeaderStart (line 908) | public void TableHeaderStart(Header h, Row row) method TableHeaderEnd (line 913) | public void TableHeaderEnd(Header h, Row row) method TableRowStart (line 918) | public async Task TableRowStart(TableRow tr, Row row) method TableRowEnd (line 954) | public void TableRowEnd(TableRow tr, Row row) method TableCellStart (line 959) | public async Task TableCellStart(TableCell t, Row row) method SortType (line 1031) | private string SortType(TableCell tc, Textbox tb) method TableCellEnd (line 1098) | public void TableCellEnd(TableCell t, Row row) method MatrixStart (line 1113) | public async Task MatrixStart(Matrix m, MatrixCellEntry[,] matri... method MatrixColumns (line 1126) | public void MatrixColumns(Matrix m, MatrixColumns mc) // called just a... method MatrixCellStart (line 1130) | public async Task MatrixCellStart(Matrix m, ReportItem ri, int row, in... method MatrixCellEnd (line 1165) | public Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column... method MatrixRowStart (line 1179) | public void MatrixRowStart(Matrix m, int row, Row r) method MatrixRowEnd (line 1186) | public void MatrixRowEnd(Matrix m, int row, Row r) method MatrixEnd (line 1191) | public async Task MatrixEnd(Matrix m, Row r) // called last method Chart (line 1201) | public async Task Chart(Chart c, Row r, ChartBase cb) method Image (line 1244) | public async Task Image(Image i, Row r, string mimeType, Stream ioin) method WriteImageToBase64String (line 1328) | private async Task WriteImageToBase64String(Stream ioin) method WriteImageToFile (line 1339) | private async Task WriteImageToFile(Stream ioin, string suffix) method Line (line 1372) | public async Task Line(Line l, Row r) method RectangleStart (line 1423) | public async Task RectangleStart(Rdl.Rectangle rect, Row r) method RectangleEnd (line 1441) | public async Task RectangleEnd(Rdl.Rectangle rect, Row r) method Subreport (line 1451) | public async Task Subreport(Subreport s, Row r) method GroupingStart (line 1462) | public void GroupingStart(Grouping g) // called at start of grouping method GroupingInstanceStart (line 1465) | public void GroupingInstanceStart(Grouping g) // called at start for e... method GroupingInstanceEnd (line 1468) | public void GroupingInstanceEnd(Grouping g) // called at start for eac... method GroupingEnd (line 1471) | public void GroupingEnd(Grouping g) // called at end of grouping method RunPages (line 1474) | public Task RunPages(Pages pgs) // we don't have paging turned on for ... class CssCacheEntry (line 1481) | class CssCacheEntry method CssCacheEntry (line 1486) | public CssCacheEntry(string css, string name) FILE: RdlEngine/Render/RenderPdf_iTextSharp.cs class RenderPdf_iTextSharp (line 53) | [SecuritySafeCritical] method RenderPdf_iTextSharp (line 79) | static RenderPdf_iTextSharp() method RenderPdf_iTextSharp (line 135) | public RenderPdf_iTextSharp(Report report, IStreamGen sg) : base(repor... method CreateDocument (line 145) | protected internal override void CreateDocument() method EndDocument (line 158) | protected internal override void EndDocument(Stream sg) method CreatePage (line 169) | protected internal override void CreatePage() method AfterProcessPage (line 175) | protected internal override void AfterProcessPage() method AddBookmark (line 179) | protected internal override void AddBookmark(PageText pt) method AddLine (line 183) | protected internal override void AddLine(float x, float y, float x2, f... method AddImage (line 210) | protected internal override void AddImage(string name, StyleInfo si, I... method AddPolygon (line 230) | protected internal override void AddPolygon(Draw2.PointF[] pts, StyleI... method AddRectangle (line 242) | protected internal override void AddRectangle(float x, float y, float ... method AddPie (line 263) | protected internal override void AddPie(float x, float y, float height... method AddCurve (line 284) | protected internal override void AddCurve(Draw2.PointF[] pts, StyleInf... method AddEllipse (line 299) | protected internal override void AddEllipse(float x, float y, float he... method iFontNameNormalize (line 343) | private string iFontNameNormalize(string face) method IsAsian (line 386) | public bool IsAsian(string[] text) method AddText (line 404) | protected internal override void AddText(float x, float y, float heigh... method iAddFillRect (line 841) | private void iAddFillRect(float x, float y, float width, float height,... method iAddBorder (line 852) | private void iAddBorder(StyleInfo si, float x, float y, float height, ... method iAddPoints (line 875) | private void iAddPoints(Draw2.PointF[] pts) method iAddFillRect (line 889) | private void iAddFillRect(float x, float y, float width, float height,... method iAddCurve (line 901) | private void iAddCurve(float X1, float Y1, float X2, float Y2, float X... method iDoCurve (line 935) | private void iDoCurve(Draw2.PointF[] points, Draw2.PointF[] tangents, ... method iGetCurveTangents (line 958) | private Draw2.PointF[] iGetCurveTangents(Draw2.PointF[] points) FILE: RdlEngine/Render/RenderRtf.cs class RenderRtf (line 28) | internal class RenderRtf: IPresent method RenderRtf (line 48) | public RenderRtf(Report rep, IStreamGen sg) method Dispose (line 57) | public void Dispose() method Report (line 67) | public Report Report() method IsPagingNeeded (line 72) | public bool IsPagingNeeded() method Start (line 77) | public void Start() method End (line 95) | public async Task End() method PutPageMetrics (line 133) | private void PutPageMetrics(TextWriter ftw) method PutColorTable (line 144) | private void PutColorTable(TextWriter ftw) method PutFontTable (line 154) | private void PutFontTable(TextWriter ftw) method PutInformationGroup (line 169) | private void PutInformationGroup(TextWriter ftw) method GetFontFamily (line 202) | private string GetFontFamily(string font) method BodyStart (line 233) | public void BodyStart(Body b) method BodyEnd (line 237) | public void BodyEnd(Body b) method PageHeaderStart (line 241) | public void PageHeaderStart(PageHeader ph) method PageHeaderEnd (line 245) | public void PageHeaderEnd(PageHeader ph) method PageFooterStart (line 249) | public void PageFooterStart(PageFooter pf) method PageFooterEnd (line 253) | public void PageFooterEnd(PageFooter pf) method Textbox (line 257) | public async Task Textbox(Textbox tb, string t, Row row) method InTable (line 283) | private static bool InTable(ReportItem tb) method EscapeText (line 298) | private string EscapeText(string s) method RtfAnsi (line 318) | private string RtfAnsi(string s) method DoStyle (line 331) | private async Task DoStyle(Style style, Row row) method DataRegionNoRows (line 374) | public async Task DataRegionNoRows(DataRegion d, string noRowsMsg) /... method ListStart (line 390) | public Task ListStart(List l, Row r) method ListEnd (line 395) | public Task ListEnd(List l, Row r) method ListEntryBegin (line 400) | public Task ListEntryBegin(List l, Row r) method ListEntryEnd (line 405) | public void ListEntryEnd(List l, Row r) method TableStart (line 410) | public Task TableStart(Table t, Row row) method IsTableSortable (line 417) | public bool IsTableSortable(Table t) method TableEnd (line 422) | public Task TableEnd(Table t, Row row) method TableBodyStart (line 428) | public void TableBodyStart(Table t, Row row) method TableBodyEnd (line 432) | public void TableBodyEnd(Table t, Row row) method TableFooterStart (line 436) | public void TableFooterStart(Footer f, Row row) method TableFooterEnd (line 440) | public void TableFooterEnd(Footer f, Row row) method TableHeaderStart (line 444) | public void TableHeaderStart(Header h, Row row) method TableHeaderEnd (line 448) | public void TableHeaderEnd(Header h, Row row) method TableRowStart (line 452) | public async Task TableRowStart(TableRow tr, Row row) method GetBorderStyle (line 499) | private string GetBorderStyle(BorderStyleEnum borderStyleEnum) method TableRowEnd (line 539) | public void TableRowEnd(TableRow tr, Row row) method TableCellStart (line 544) | public Task TableCellStart(TableCell t, Row row) method TableCellEnd (line 549) | public void TableCellEnd(TableCell t, Row row) method MatrixStart (line 554) | public Task MatrixStart(Matrix m, MatrixCellEntry[,] matrix, Row... method MatrixColumns (line 571) | public void MatrixColumns(Matrix m, MatrixColumns mc) // called just a... method MatrixCellStart (line 575) | public async Task MatrixCellStart(Matrix m, ReportItem ri, int row, in... method MatrixCellEnd (line 611) | public Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column... method MatrixRowStart (line 617) | public void MatrixRowStart(Matrix m, int row, Row r) method MatrixRowEnd (line 622) | public void MatrixRowEnd(Matrix m, int row, Row r) method MatrixEnd (line 627) | public Task MatrixEnd(Matrix m, Row r) // called last method Chart (line 636) | public Task Chart(Chart c, Row row, ChartBase cb) method Image (line 647) | public Task Image(Image i, Row r, string mimeType, Stream ioin) method PutImage (line 680) | void PutImage(Draw2.Image im, int width, int height) method GetTwipsFromPixels (line 711) | private int GetTwipsFromPixels(int pixels) method Line (line 716) | public Task Line(Line l, Row r) method RectangleStart (line 721) | public Task RectangleStart(Rdl.Rectangle rect, Row r) method RectangleEnd (line 726) | public Task RectangleEnd(Rdl.Rectangle rect, Row r) method Subreport (line 732) | public Task Subreport(Subreport s, Row r) method GroupingStart (line 736) | public void GroupingStart(Grouping g) // called at start of grouping method GroupingInstanceStart (line 739) | public void GroupingInstanceStart(Grouping g) // called at start for e... method GroupingInstanceEnd (line 742) | public void GroupingInstanceEnd(Grouping g) // called at start for eac... method GroupingEnd (line 745) | public void GroupingEnd(Grouping g) // called at end of grouping method RunPages (line 748) | public Task RunPages(Pages pgs) // we don't have paging turned on for ... FILE: RdlEngine/Render/RenderTif.cs class RenderTif (line 44) | internal class RenderTif : IPresent method RenderTif (line 56) | public RenderTif(Report rep, IStreamGen sg) method Dispose (line 63) | public void Dispose() { } method Report (line 74) | public Report Report() method IsPagingNeeded (line 79) | public bool IsPagingNeeded() method Start (line 84) | public void Start() method End (line 88) | public Task End() method RunPages (line 93) | public async Task RunPages(Pages pgs) // this does all the work method ProcessPage (line 141) | private async Task ProcessPage(Draw2.Graphics g, IEnumerable p) method ProcessHtml (line 209) | private async Task ProcessHtml(PageTextHtml pth, Draw2.Graphics g) method DrawLine (line 215) | private void DrawLine(Draw2.Color c, BorderStyleEnum bs, float w, Draw... method DrawCurve (line 253) | private void DrawCurve(Draw2.Color c, BorderStyleEnum bs, float w, Dra... method DrawEllipse (line 300) | private void DrawEllipse(PageEllipse pe, Draw2.Graphics g, Draw2.Recta... method FillPolygon (line 333) | private void FillPolygon(PagePolygon pp, Draw2.Graphics g, Draw2.Recta... method DrawPie (line 349) | private void DrawPie(PagePie pp, Draw2.Graphics g, Draw2.RectangleF r) method DrawString (line 383) | private void DrawString(PageText pt, Draw2.Graphics g, Draw2.Rectangle... method DrawImage (line 500) | private void DrawImage(PageImage pi, Draw2.Graphics g, Draw2.Rectangle... method DrawImageSized (line 520) | private void DrawImageSized(PageImage pi, Draw2.Image im, Draw2.Graphi... method DrawBackground (line 592) | private void DrawBackground(Draw2.Graphics g, Draw2.RectangleF rect, S... method DrawBorder (line 655) | private void DrawBorder(PageItem pi, Draw2.Graphics g, Draw2.Rectangle... method CreateObjectBitmap (line 675) | private Draw2.Bitmap CreateObjectBitmap() method ConvertToBitonal (line 691) | private Draw2.Bitmap ConvertToBitonal(Draw2.Bitmap original) method SaveBitmap (line 795) | private void SaveBitmap(Draw2.Bitmap tif, Draw2.Bitmap bm, Stream st, ... method PixelsX (line 843) | internal float PixelsX(float x) method PixelsY (line 848) | internal float PixelsY(float y) method BodyStart (line 854) | public void BodyStart(Body b) method BodyEnd (line 858) | public void BodyEnd(Body b) method PageHeaderStart (line 862) | public void PageHeaderStart(PageHeader ph) method PageHeaderEnd (line 866) | public void PageHeaderEnd(PageHeader ph) method PageFooterStart (line 870) | public void PageFooterStart(PageFooter pf) method PageFooterEnd (line 874) | public void PageFooterEnd(PageFooter pf) method Textbox (line 878) | public Task Textbox(Textbox tb, string t, Row row) method DataRegionNoRows (line 883) | public Task DataRegionNoRows(DataRegion d, string noRowsMsg) method ListStart (line 889) | public Task ListStart(List l, Row r) method ListEnd (line 894) | public Task ListEnd(List l, Row r) method ListEntryBegin (line 899) | public Task ListEntryBegin(List l, Row r) method ListEntryEnd (line 904) | public void ListEntryEnd(List l, Row r) method TableStart (line 909) | public Task TableStart(Table t, Row row) method TableEnd (line 914) | public Task TableEnd(Table t, Row row) method TableBodyStart (line 919) | public void TableBodyStart(Table t, Row row) method TableBodyEnd (line 923) | public void TableBodyEnd(Table t, Row row) method TableFooterStart (line 927) | public void TableFooterStart(Footer f, Row row) method TableFooterEnd (line 931) | public void TableFooterEnd(Footer f, Row row) method TableHeaderStart (line 935) | public void TableHeaderStart(Header h, Row row) method TableHeaderEnd (line 939) | public void TableHeaderEnd(Header h, Row row) method TableRowStart (line 943) | public Task TableRowStart(TableRow tr, Row row) method TableRowEnd (line 948) | public void TableRowEnd(TableRow tr, Row row) method TableCellStart (line 952) | public Task TableCellStart(TableCell t, Row row) method TableCellEnd (line 957) | public void TableCellEnd(TableCell t, Row row) method MatrixStart (line 962) | public Task MatrixStart(Matrix m, MatrixCellEntry[,] matrix, Row... method MatrixColumns (line 967) | public void MatrixColumns(Matrix m, MatrixColumns mc) // called just... method MatrixCellStart (line 971) | public Task MatrixCellStart(Matrix m, ReportItem ri, int row, int colu... method MatrixCellEnd (line 976) | public Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column... method MatrixRowStart (line 981) | public void MatrixRowStart(Matrix m, int row, Row r) method MatrixRowEnd (line 985) | public void MatrixRowEnd(Matrix m, int row, Row r) method MatrixEnd (line 989) | public Task MatrixEnd(Matrix m, Row r) // called last method Chart (line 994) | public Task Chart(Chart c, Row r, ChartBase cb) method Image (line 999) | public Task Image(Rdl.Image i, Row r, string mimeType, Stream ior) method Line (line 1004) | public Task Line(Line l, Row r) method RectangleStart (line 1009) | public Task RectangleStart(Rdl.Rectangle rect, Row r) method RectangleEnd (line 1014) | public Task RectangleEnd(Rdl.Rectangle rect, Row r) method Subreport (line 1019) | public Task Subreport(Subreport s, Row r) method GroupingStart (line 1024) | public void GroupingStart(Grouping g) // called at start of gr... method GroupingInstanceStart (line 1027) | public void GroupingInstanceStart(Grouping g) // called at start for... method GroupingInstanceEnd (line 1030) | public void GroupingInstanceEnd(Grouping g) // called at start for e... method GroupingEnd (line 1033) | public void GroupingEnd(Grouping g) // called at end of grouping FILE: RdlEngine/Render/RenderXml.cs class RenderXml (line 16) | internal class RenderXml: IPresent method RenderXml (line 24) | public RenderXml(Report rep, IStreamGen sg) method Dispose (line 32) | public void Dispose() { } method Report (line 34) | public Report Report() method IsPagingNeeded (line 39) | public bool IsPagingNeeded() method Start (line 44) | public void Start() method End (line 53) | public async Task End() method BodyStart (line 65) | public void BodyStart(Body b) method BodyEnd (line 69) | public void BodyEnd(Body b) method PageHeaderStart (line 73) | public void PageHeaderStart(PageHeader ph) method PageHeaderEnd (line 77) | public void PageHeaderEnd(PageHeader ph) method PageFooterStart (line 81) | public void PageFooterStart(PageFooter pf) method PageFooterEnd (line 85) | public void PageFooterEnd(PageFooter pf) method Textbox (line 89) | public Task Textbox(Textbox tb, string t, Row row) method DataRegionNoRows (line 113) | public Task DataRegionNoRows(DataRegion t, string noRowMsg) method ListStart (line 119) | public Task ListStart(List l, Row r) method ListEnd (line 130) | public Task ListEnd(List l, Row r) method ListEntryBegin (line 140) | public Task ListEntryBegin(List l, Row r) method ListEntryEnd (line 161) | public void ListEntryEnd(List l, Row r) method TableStart (line 171) | public Task TableStart(Table t, Row row) method TableEnd (line 186) | public Task TableEnd(Table t, Row row) method TableGetCollectionName (line 199) | string TableGetCollectionName(Table t) method TableBodyStart (line 215) | public void TableBodyStart(Table t, Row row) method TableBodyEnd (line 219) | public void TableBodyEnd(Table t, Row row) method TableFooterStart (line 223) | public void TableFooterStart(Footer f, Row row) method TableFooterEnd (line 227) | public void TableFooterEnd(Footer f, Row row) method TableHeaderStart (line 231) | public void TableHeaderStart(Header h, Row row) method TableHeaderEnd (line 235) | public void TableHeaderEnd(Header h, Row row) method TableRowStart (line 239) | public Task TableRowStart(TableRow tr, Row row) method TableRowEnd (line 248) | public void TableRowEnd(TableRow tr, Row row) method TableGetRowElementName (line 256) | string TableGetRowElementName(TableRow tr) method TableCellStart (line 282) | public Task TableCellStart(TableCell t, Row row) method TableCellEnd (line 287) | public void TableCellEnd(TableCell t, Row row) method MatrixStart (line 292) | public Task MatrixStart(Matrix m, MatrixCellEntry[,] matrix, Row... method MatrixColumns (line 301) | public void MatrixColumns(Matrix m, MatrixColumns mc) // called just a... method MatrixCellStart (line 305) | public Task MatrixCellStart(Matrix m, ReportItem ri, int row, int colu... method MatrixCellEnd (line 310) | public Task MatrixCellEnd(Matrix m, ReportItem ri, int row, int column... method MatrixRowStart (line 315) | public void MatrixRowStart(Matrix m, int row, Row r) method MatrixRowEnd (line 319) | public void MatrixRowEnd(Matrix m, int row, Row r) method MatrixEnd (line 323) | public Task MatrixEnd(Matrix m, Row r) // called last method Chart (line 329) | public Task Chart(Chart c, Row r, ChartBase cb) method Image (line 334) | public Task Image(Image i, Row r, string mimeType, Stream io) method Line (line 339) | public Task Line(Line l, Row r) method RectangleStart (line 344) | public Task RectangleStart(Rdl.Rectangle rect, Row r) method RectangleEnd (line 369) | public Task RectangleEnd(Rdl.Rectangle rect, Row r) method Subreport (line 378) | public async Task Subreport(Subreport s, Row r) method GroupingStart (line 390) | public void GroupingStart(Grouping g) // called at start of grouping method GroupingInstanceStart (line 398) | public void GroupingInstanceStart(Grouping g) // called at start for e... method GroupingInstanceEnd (line 405) | public void GroupingInstanceEnd(Grouping g) // called at start for eac... method GroupingEnd (line 411) | public void GroupingEnd(Grouping g) // called at end of grouping method RunPages (line 418) | public Task RunPages(Pages pgs) // we don't have paging turned on for xml method PopContainer (line 423) | void PopContainer(string name) method PushContainer (line 435) | void PushContainer(string name) method WriteElement (line 441) | void WriteElement(string format) method WriteElement (line 447) | void WriteElement(string format, params object[] arg) method WriteElementLine (line 453) | void WriteElementLine(string format) method WriteElementLine (line 459) | void WriteElementLine(string format, params object[] arg) method WriteAttribute (line 465) | void WriteAttribute(string format) method WriteAttribute (line 471) | void WriteAttribute(string format, params object[] arg) method WriteAttributeLine (line 477) | void WriteAttributeLine(string format) method WriteAttributeLine (line 483) | void WriteAttributeLine(string format, params object[] arg) class ContainerIO (line 489) | class ContainerIO method ContainerIO (line 499) | internal ContainerIO(string begin) method WriteElement (line 508) | internal void WriteElement(string format) method WriteElement (line 514) | internal void WriteElement(string format, params object[] arg) method WriteElementLine (line 520) | internal void WriteElementLine(string format) method WriteElementLine (line 526) | internal void WriteElementLine(string format, params object[] arg) method WriteAttribute (line 532) | internal void WriteAttribute(string format) method WriteAttribute (line 538) | internal void WriteAttribute(string format, params object[] arg) method WriteAttributeLine (line 544) | internal void WriteAttributeLine(string format) method WriteAttributeLine (line 550) | internal void WriteAttributeLine(string format, params object[] arg) FILE: RdlEngine/Render/StreamGen.cs class StreamGen (line 17) | [Serializable] method StreamGen (line 28) | public StreamGen(string directory, string relativeDirectory, string ext) method CloseMainStream (line 73) | public void CloseMainStream() method GetStream (line 88) | public Stream GetStream() method GetTextWriter (line 93) | public TextWriter GetTextWriter() method GetIOStream (line 103) | public Stream GetIOStream(out string relativeName, string extension) method Dispose (line 133) | public void Dispose() FILE: RdlEngine/Resources/Strings.Designer.cs class Strings (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Strings (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlEngine/Runtime/DataSet.cs class DataSet (line 16) | [Serializable] method DataSet (line 22) | internal DataSet(Report rpt, DataSetDefn dsd) method SetData (line 28) | public async Task SetData(IDataReader dr) method SetData (line 33) | public async Task SetData(DataTable dt) method SetData (line 38) | public async Task SetData(XmlDocument xmlDoc) method SetData (line 53) | public async Task SetData(IEnumerable ie, bool collection = false) method SetSource (line 58) | public async Task SetSource(string sql) FILE: RdlEngine/Runtime/DataSets.cs class DataSets (line 15) | [Serializable] method DataSets (line 21) | internal DataSets(Report rpt, DataSetsDefn dsn) method GetEnumerator (line 48) | public IEnumerator GetEnumerator() FILE: RdlEngine/Runtime/DataSource.cs class DataSource (line 16) | [Serializable] method DataSource (line 22) | internal DataSource(Report rpt, DataSourceDefn dsd) FILE: RdlEngine/Runtime/DataSources.cs class DataSources (line 14) | [Serializable] method DataSources (line 20) | internal DataSources(Report rpt, DataSourcesDefn dsds) method GetEnumerator (line 42) | public IEnumerator GetEnumerator() FILE: RdlEngine/Runtime/ICustomReportItem.cs type ICustomReportItem (line 19) | public interface ICustomReportItem : IDisposable method IsDataRegion (line 21) | bool IsDataRegion(); method DrawImage (line 22) | void DrawImage(ref Draw2.Bitmap bm); method DrawDesignerImage (line 23) | void DrawDesignerImage(ref Draw2.Bitmap bm); method SetProperties (line 24) | void SetProperties(IDictionary parameters); method GetPropertiesInstance (line 25) | object GetPropertiesInstance(XmlNode node); method SetPropertiesInstance (line 26) | void SetPropertiesInstance(XmlNode node, object inst); method GetCustomReportItemXml (line 27) | string GetCustomReportItemXml(); FILE: RdlEngine/Runtime/ImageQualityManager.cs class ImageQualityManager (line 9) | class ImageQualityManager FILE: RdlEngine/Runtime/Page.cs class Page (line 7) | public class Page : IEnumerable, IDisposable method Page (line 19) | public Page(int page) method InsertObject (line 37) | public void InsertObject(PageItem pi) method AddObject (line 43) | public void AddObject(PageItem pi) method AddObjectInternal (line 49) | private void AddObjectInternal(PageItem pi) method IsEmpty (line 87) | public bool IsEmpty() method SortPageItems (line 92) | public void SortPageItems() method ResetEmpty (line 99) | public void ResetEmpty() method SetEmpty (line 104) | public void SetEmpty() method AddPageExpressionRow (line 126) | internal void AddPageExpressionRow(Report rpt, string exprname, Row r) method GetPageExpressionRows (line 148) | internal Rows GetPageExpressionRows(string exprname) method ResetPageExpressions (line 158) | internal void ResetPageExpressions() method GetEnumerator (line 165) | public IEnumerator GetEnumerator() // just loop thru the pages method Dispose (line 170) | public void Dispose() FILE: RdlEngine/Runtime/PageItems/PageCurve.cs class PageCurve (line 10) | public class PageCurve : PageItem, ICloneable method PageCurve (line 16) | public PageCurve() method Clone (line 39) | new public object Clone() FILE: RdlEngine/Runtime/PageItems/PageEllipse.cs class PageEllipse (line 5) | public class PageEllipse : PageItem, ICloneable method PageEllipse (line 7) | public PageEllipse() method Clone (line 14) | new public object Clone() FILE: RdlEngine/Runtime/PageItems/PageImage.cs class PageImage (line 11) | public class PageImage : PageItem, ICloneable method PageImage (line 22) | public PageImage(ImageFormat im, byte[] image, int w, int h) method PageImage (line 40) | public PageImage(ImageFormat im, Func i... method GetImageData (line 62) | public byte[] GetImageData(int wantedWidth, int wantedHeight) method GetImageData (line 74) | public byte[] GetImageData() => imageData ?? GetImageData(SamplesW, sa... method Clone (line 110) | new public object Clone() type ImageRepeat (line 118) | public enum ImageRepeat FILE: RdlEngine/Runtime/PageItems/PageItem.cs class PageItem (line 5) | public class PageItem : ICloneable, IComparable method Clone (line 99) | public object Clone() method CompareTo (line 108) | public int CompareTo(object obj) method Dispose (line 118) | internal void Dispose() FILE: RdlEngine/Runtime/PageItems/PageLine.cs class PageLine (line 5) | public class PageLine : PageItem, ICloneable method PageLine (line 7) | public PageLine() method Clone (line 24) | new public object Clone() FILE: RdlEngine/Runtime/PageItems/PagePie.cs class PagePie (line 5) | public class PagePie : PageItem, ICloneable method PagePie (line 9) | public PagePie() method Clone (line 25) | new public object Clone() FILE: RdlEngine/Runtime/PageItems/PagePolygon.cs class PagePolygon (line 10) | public class PagePolygon : PageItem, ICloneable method PagePolygon (line 13) | public PagePolygon() FILE: RdlEngine/Runtime/PageItems/PageRectangle.cs class PageRectangle (line 5) | public class PageRectangle : PageItem, ICloneable method PageRectangle (line 7) | public PageRectangle() method Clone (line 12) | new public object Clone() FILE: RdlEngine/Runtime/PageItems/PageText.cs class PageText (line 5) | public class PageText : PageItem, ICloneable method PageText (line 13) | public PageText(string t) method Clone (line 50) | new public object Clone() FILE: RdlEngine/Runtime/PageTextHtml.cs class PageTextHtml (line 27) | public class PageTextHtml : PageText, IEnumerable, ICloneable method PageTextHtml (line 32) | public PageTextHtml(string t) : base(t) method Reset (line 39) | public void Reset() method Build (line 54) | public async Task Build(Draw.Graphics g) method BuildPrivate (line 69) | private async Task BuildPrivate(Draw.Graphics g) method BuildAnchor (line 404) | private void BuildAnchor(string token, StyleInfo oldsi, PageText model) method BuildImage (line 419) | private async Task BuildImage(Draw.Graphics g, string token... method CurrentStyle (line 489) | private StyleInfo CurrentStyle(StyleInfo def) method HandleStyle (line 497) | private void HandleStyle(string token, StyleInfo model) method HandleFont (line 510) | private void HandleFont(string token, StyleInfo model) method HandleStyleString (line 536) | private void HandleStyleString(string style, StyleInfo si) method HandleStyleFontSize (line 577) | private void HandleStyleFontSize(StyleInfo si, string size) method HandleStyleFontWeight (line 651) | private void HandleStyleFontWeight(StyleInfo si, string w) method PopStyle (line 722) | private void PopStyle() method NormalizeLineHeight (line 728) | private void NormalizeLineHeight(List lineItems, float maxLi... method ParseHtmlCmd (line 746) | private Hashtable ParseHtmlCmd(string token) method MeasureString (line 779) | private Draw.SizeF MeasureString(string s, StyleInfo si, Draw.Graphics... method GetEnumerator (line 847) | public IEnumerator GetEnumerator() method Clone (line 858) | new public object Clone() FILE: RdlEngine/Runtime/PageTextHtmlCmdLexer.cs class PageTextHtmlCmdLexer (line 14) | internal class PageTextHtmlCmdLexer method PageTextHtmlCmdLexer (line 23) | internal PageTextHtmlCmdLexer(string htmlcmd) method Lex (line 33) | internal Hashtable Lex() method GetNextToken (line 53) | private string GetNextToken() method ReadQuoted (line 77) | private string ReadQuoted(char firstc) method ReadWord (line 93) | private string ReadWord(char ch) class CharReader (line 116) | class CharReader method CharReader (line 124) | internal CharReader(string text) method GetNext (line 132) | internal char GetNext() method Peek (line 146) | internal char Peek() method UnGet (line 157) | internal void UnGet() method EndOfInput (line 169) | internal bool EndOfInput() FILE: RdlEngine/Runtime/PageTextHtmlLexer.cs class PageTextHtmlLexer (line 14) | internal class PageTextHtmlLexer method PageTextHtmlLexer (line 29) | internal PageTextHtmlLexer(string html) method Lex (line 42) | internal List Lex() method GetNextToken (line 58) | private string GetNextToken() method ReadHtml (line 91) | private string ReadHtml(char firstc, char ch) method IsHtmlComment (line 146) | private bool IsHtmlComment() method ReadSpecial (line 169) | private char ReadSpecial() method ReadWord (line 330) | private string ReadWord(char firstc, char ch) class CharReader (line 353) | class CharReader method CharReader (line 361) | internal CharReader(string text) method GetNext (line 369) | internal char GetNext() method Peek (line 383) | internal char Peek() method UnGet (line 394) | internal void UnGet() method EndOfInput (line 406) | internal bool EndOfInput() FILE: RdlEngine/Runtime/Pages.cs class Pages (line 19) | public class Pages : IEnumerable, IDisposable method Pages (line 30) | public Pages(Report r) method AddPage (line 54) | public void AddPage(Page p) method NextOrNew (line 60) | public void NextOrNew() method CleanUp (line 78) | public void CleanUp() method SortPageItems (line 92) | public void SortPageItems() method RemoveLastPage (line 172) | public void RemoveLastPage() method GetEnumerator (line 212) | public IEnumerator GetEnumerator() // just loop thru the pages method Dispose (line 217) | public void Dispose() FILE: RdlEngine/Runtime/ParameterLexer.cs class ParameterLexer (line 13) | internal class ParameterLexer method ParameterLexer (line 23) | internal ParameterLexer(string expr) method ParameterLexer (line 34) | internal ParameterLexer(TextReader source) method Lex (line 47) | internal ArrayList Lex() method GetNextToken (line 72) | private Token GetNextToken() method ReadToComma (line 98) | private Token ReadToComma(char ch) method ReadQuoted (line 115) | private Token ReadQuoted(char ch) FILE: RdlEngine/Runtime/RdlEngineConfig.cs class RdlEngineConfig (line 20) | public class RdlEngineConfig method RdlEngineConfigInit (line 39) | static public void RdlEngineConfigInit() method RdlEngineConfigInit (line 50) | static public void RdlEngineConfigInit(params string[] dirs) method GetCompression (line 348) | internal static CompressionConfig GetCompression() method GetCompression (line 356) | static void GetCompression(XmlNode xNode) method GetDataSources (line 395) | static void GetDataSources(IDictionary dsDir, XmlNode xNode) method GetDataSource (line 408) | static void GetDataSource(IDictionary dsDir, XmlNode xNode) method GetConnection (line 509) | public static IDbConnection GetConnection(string provider, string cstr... method GetTableSelect (line 570) | static public string GetTableSelect(string provider) method DoParameterReplacement (line 575) | static public bool DoParameterReplacement(string provider, IDbConnecti... method GetTableSelect (line 583) | static public string GetTableSelect(string provider, IDbConnection cn) method GetProviders (line 607) | static public string[] GetProviders() method GetCustomReportTypes (line 622) | static public string[] GetCustomReportTypes() method GetCustomReportItems (line 637) | static void GetCustomReportItems(Dictionary RunGetData(IDictionary parms) method RunRender (line 131) | public async Task RunRender(IStreamGen sg, OutputPresentationType type) method RunRender (line 142) | public async Task RunRender(IStreamGen sg, OutputPresentationType type... method RunRenderMht (line 228) | private async Task RunRenderMht(IStreamGen sg) method RunRenderPdf (line 285) | public async Task RunRenderPdf(IStreamGen sg, Pages pgs) method RunRenderTif (line 313) | public async Task RunRenderTif(IStreamGen sg, Pages pgs, bool bColor) method RunRenderXmlTransform (line 336) | private void RunRenderXmlTransform(IStreamGen sg, MemoryStreamGen msg) method BuildPages (line 363) | public async Task BuildPages() method SetReportDefinition (line 417) | internal void SetReportDefinition(ReportDefn r) method CreateRuntimeName (line 449) | internal string CreateRuntimeName(object ro) method ErrorReset (line 602) | public void ErrorReset() method Dispose (line 610) | public void Dispose() class RCache (line 665) | internal class RCache method RCache (line 669) | internal RCache() method Add (line 674) | internal void Add(ReportLink rl, string name, object o) method AddReplace (line 679) | internal void AddReplace(ReportLink rl, string name, object o) method Get (line 685) | internal object Get(ReportLink rl, string name) method Remove (line 691) | internal void Remove(ReportLink rl, string name) method Add (line 696) | internal void Add(ReportDefn rd, string name, object o) method AddReplace (line 701) | internal void AddReplace(ReportDefn rd, string name, object o) method Get (line 707) | internal object Get(ReportDefn rd, string name) method Remove (line 713) | internal void Remove(ReportDefn rd, string name) method Add (line 718) | internal void Add(string key, object o) method AddReplace (line 723) | internal void AddReplace(string key, object o) method Get (line 728) | internal object Get(string key) method Remove (line 734) | internal void Remove(string key) method Get (line 739) | internal object Get(int i, string name) method Remove (line 745) | internal void Remove(int i, string name) method GetKey (line 750) | string GetKey(ReportLink rl, string name) method GetKey (line 755) | string GetKey(ReportDefn rd, string name) method GetKey (line 767) | string GetKey(int onum, string name) class ODateTime (line 774) | internal class ODateTime method ODateTime (line 778) | internal ODateTime(DateTime adt) class ODecimal (line 784) | internal class ODecimal method ODecimal (line 788) | internal ODecimal(decimal ad) class ODouble (line 794) | internal class ODouble method ODouble (line 798) | internal ODouble(double ad) class OFloat (line 804) | internal class OFloat method OFloat (line 808) | internal OFloat(float af) class OInt (line 814) | internal class OInt method OInt (line 818) | internal OInt(int ai) class SubreportDataRetrievalEventArgs (line 824) | public class SubreportDataRetrievalEventArgs : EventArgs method SubreportDataRetrievalEventArgs (line 828) | public SubreportDataRetrievalEventArgs(Report r) FILE: RdlEngine/Runtime/StyleInfo.cs class StyleInfo (line 21) | public class StyleInfo: ICloneable method StyleInfo (line 188) | public StyleInfo() method GetFontFamily (line 248) | public Draw.FontFamily GetFontFamily() method GetFontFamily (line 257) | static public Draw.FontFamily GetFontFamily(string fface) method IsFontBold (line 303) | public bool IsFontBold() method ToUpperFirstLetter (line 321) | public static string ToUpperFirstLetter(string source) method GetFontWeight (line 341) | static public FontWeightEnum GetFontWeight(string v, FontWeightEnum def) method GetFontStyle (line 362) | public static FontStyleEnum GetFontStyle(string v, FontStyleEnum def) method GetBackgroundGradientType (line 383) | static public BackgroundGradientTypeEnum GetBackgroundGradientType(str... method GetTextDecoration (line 404) | public static TextDecorationEnum GetTextDecoration(string v, TextDecor... method GetTextAlign (line 425) | public static TextAlignEnum GetTextAlign(string v, TextAlignEnum def) method GetVerticalAlign (line 447) | public static VerticalAlignEnum GetVerticalAlign(string v, VerticalAli... method GetDirection (line 469) | public static DirectionEnum GetDirection(string v, DirectionEnum def) method GetWritingMode (line 490) | public static WritingModeEnum GetWritingMode(string v, WritingModeEnum... method GetUnicodeBiDirectional (line 525) | public static UnicodeBiDirectionalEnum GetUnicodeBiDirectional(string ... method GetCalendar (line 546) | public static CalendarEnum GetCalendar(string v, CalendarEnum def) method GetFormatCode (line 561) | public static int GetFormatCode (string val) method GetPatternType (line 629) | public static patternTypeEnum GetPatternType(Drawing2D.HatchStyle hs) method Clone (line 664) | public object Clone() type patternTypeEnum (line 675) | public enum patternTypeEnum type BackgroundGradientTypeEnum (line 695) | public enum BackgroundGradientTypeEnum type FontStyleEnum (line 733) | public enum FontStyleEnum type FontWeightEnum (line 748) | public enum FontWeightEnum type TextDecorationEnum (line 804) | public enum TextDecorationEnum type TextAlignEnum (line 812) | public enum TextAlignEnum type VerticalAlignEnum (line 821) | public enum VerticalAlignEnum type DirectionEnum (line 828) | public enum DirectionEnum type WritingModeEnum (line 834) | public enum WritingModeEnum type UnicodeBiDirectionalEnum (line 841) | public enum UnicodeBiDirectionalEnum type CalendarEnum (line 848) | public enum CalendarEnum FILE: RdlEngine/Runtime/XmlUtil.cs class XmlUtil (line 20) | public sealed class XmlUtil method Boolean (line 22) | static internal bool Boolean(string tf, ReportLog rl) method ColorFromHtml (line 33) | static internal Color ColorFromHtml(string sc, Color dc) method ColorFromHtml (line 38) | static internal Color ColorFromHtml(string sc, Color dc, Report rpt) method Integer (line 55) | static internal int Integer(string i) method XmlAnsi (line 66) | static public string XmlAnsi(string s) method HtmlAnsi (line 89) | static public string HtmlAnsi(string s) method XslTrans (line 104) | static internal void XslTrans(string xslFile, string inXml, Stream out... method EscapeXmlAttribute (line 119) | static internal string EscapeXmlAttribute(string s) method AssemblyLoadFrom (line 133) | static internal Assembly AssemblyLoadFrom(string s) method AssemblyLoadFromPvt (line 162) | static Assembly AssemblyLoadFromPvt(string file, params string[] dir) method GetMethod (line 199) | static internal MethodInfo GetMethod(Type t, string method, Type[] arg... method GetTypeFromTypeCode (line 227) | static internal Type GetTypeFromTypeCode(TypeCode tc) method GetConstFromTypeCode (line 287) | static internal object GetConstFromTypeCode(TypeCode tc) method XmlFileExists (line 347) | internal static string XmlFileExists(string type) method FileExistsFrom (line 358) | static string FileExistsFrom(string file, params string[] dir) FILE: RdlEngine/Runtime/ZipWrap.cs class ZipWrap (line 15) | public class ZipWrap method Init (line 44) | static public void Init() method PropertySettingByEnum (line 69) | static public void PropertySettingByEnum(object classInstance,Type cla... class ZipOutputStream (line 78) | public class ZipOutputStream method ZipOutputStream (line 86) | public ZipOutputStream(Stream baseOutputStream) method PutNextEntry (line 113) | public void PutNextEntry(ZipEntry ze) method Write (line 119) | public void Write(string str) method Write (line 128) | public void Write(byte[] buffer, int offset, int count) method Finish (line 134) | public void Finish() method Close (line 139) | public void Close() class ZipEntry (line 145) | public class ZipEntry method ZipEntry (line 149) | public ZipEntry(string name) FILE: RdlEngine/Utility/HttpClientExtension.cs class HttpClientExtension (line 10) | public static class HttpClientExtension method AddMajorsilenceReportingUserAgent (line 12) | public static void AddMajorsilenceReportingUserAgent(this HttpClient c... FILE: RdlEngine/Utility/Measurement.cs class Measurement (line 46) | public sealed class Measurement method RectFromPoints (line 51) | public static Drawing.Rectangle RectFromPoints(Drawing.Point p1, Drawi... method PointsFromPixels (line 95) | public static float PointsFromPixels(float pixels, float dpi) method PointsFromPixels (line 103) | public static Drawing.PointF PointsFromPixels(float pixelsX, float pix... method PixelsFromPoints (line 111) | public static int PixelsFromPoints(float points, float dpi) method PixelsFromPoints (line 122) | public static Drawing.PointF PixelsFromPoints(float pointsX, float poi... method TwipsFromPoints (line 130) | public static int TwipsFromPoints(float points) method TwipsFromPixels (line 138) | public static int TwipsFromPixels(float pixels, float dpi) method PointsX (line 148) | [System.Obsolete("This method has been deprecated. Use PointsFromPixel... method PointsY (line 157) | [System.Obsolete("This method has been deprecated. Use PointsFromPixel... method PixelsX (line 167) | [System.Obsolete("This method has been deprecated. Use PixelsFromPoint... method PixelsY (line 176) | [System.Obsolete("This method has been deprecated. Use PixelsFromPoint... FILE: RdlEngine/Utility/Paths.cs class Paths (line 11) | public static class Paths method MajorsilenceRoamingFolder (line 13) | public static string MajorsilenceRoamingFolder() method MajorsilenceLocalFolder (line 23) | public static string MajorsilenceLocalFolder() method MajorsilenceLocalStreamHacksFolder (line 33) | public static string MajorsilenceLocalStreamHacksFolder() FILE: RdlGtk3/CairoPdfWriter.cs class CairoPdfWriter (line 32) | public class CairoPdfWriter method GetFileBytes (line 36) | public async Task GetFileBytes(Report report) FILE: RdlGtk3/Extensions/CairoExtensions.cs class CairoExtensions (line 40) | public static class CairoExtensions method ContainsPoint (line 42) | public static bool ContainsPoint(this Rectangle r, double x, double y) method Clone (line 57) | public static ImageSurface Clone(this ImageSurface surf) method ToCairoColor (line 70) | public static Color ToCairoColor(this Draw2.Color color) method DrawRectangle (line 79) | public static Rectangle DrawRectangle(this Context g, Rectangle r, Col... method FillRectangle (line 108) | public static Rectangle FillRectangle(this Context g, Rectangle r, Col... method FillRectangle (line 128) | public static Rectangle FillRectangle(this Context g, Rectangle r, Pat... method DrawPixbufRect (line 150) | public static void DrawPixbufRect(this Context g, Pixbuf pixbuf, Recta... FILE: RdlGtk3/MainWindow.cs class MainWindow (line 9) | public class MainWindow : Window method MainWindow (line 25) | public MainWindow() method Build (line 32) | protected virtual void Build() method OnDeleteEvent (line 161) | protected void OnDeleteEvent(object sender, EventArgs a) method OnFileOpen_Activated (line 166) | protected async void OnFileOpen_Activated(object sender, EventArgs e) method OnFileSave_Activated (line 211) | public async void OnFileSave_Activated(object sender, EventArgs e) method OnFilePrint_Activated (line 216) | public void OnFilePrint_Activated(object sender, EventArgs e) method OnFirstPageButton_Activated (line 221) | public void OnFirstPageButton_Activated(object sender, EventArgs e) method OnPreviousButton_Activated (line 226) | public void OnPreviousButton_Activated(object sender, EventArgs e) method OnNextButton_Activated (line 231) | public void OnNextButton_Activated(object sender, EventArgs e) method OnLastPageButton_Activated (line 236) | public void OnLastPageButton_Activated(object sender, EventArgs e) method GetParameters (line 241) | private async Task GetParameters(Uri sourcefile) FILE: RdlGtk3/ParameterPrompt.cs class ParameterPrompt (line 5) | public partial class ParameterPrompt : Dialog method ParameterPrompt (line 12) | public ParameterPrompt() method Build (line 17) | private void Build() FILE: RdlGtk3/RenderCairo.cs class RenderCairo (line 39) | public class RenderCairo : IDisposable method RenderCairo (line 46) | public RenderCairo(Context g) method RenderCairo (line 51) | public RenderCairo(Context g, float scale) method Dispose (line 58) | public void Dispose() method PixelsX (line 63) | internal float PixelsX(float x) method PixelsY (line 68) | internal float PixelsY(float y) method ProcessPage (line 73) | private void ProcessPage(IEnumerable p) method ProcessHtml (line 164) | private void ProcessHtml(PageTextHtml pth) method DrawLine (line 170) | private void DrawLine(Color c, BorderStyleEnum bs, float w, double x, ... method DrawImage (line 213) | private void DrawImage(PageImage pi, Cairo.Rectangle r) method DrawString (line 315) | private void DrawString(PageText pt, Cairo.Rectangle r) method DrawStringHorizontal (line 333) | private void DrawStringHorizontal(PageText pt, Cairo.Rectangle r) method DrawStringTBRL (line 423) | private void DrawStringTBRL(PageText pt, Cairo.Rectangle r) method DrawStringTBLR (line 517) | private void DrawStringTBLR(PageText pt, Cairo.Rectangle r) method DrawBackground (line 611) | private void DrawBackground(Cairo.Rectangle rect, StyleInfo si) method DrawBorder (line 682) | private void DrawBorder(PageItem pi, Cairo.Rectangle r) method RunPages (line 704) | public void RunPages(Pages pgs) method RunPage (line 725) | public void RunPage(Page pgs) FILE: RdlGtk3/ReportArea.cs class ReportArea (line 47) | [ToolboxItem(true)] method ReportArea (line 66) | public ReportArea() method OnRealized (line 87) | protected override void OnRealized() method SetReport (line 92) | public void SetReport(Report report, Page pages) method GetSelectedItemRectangle (line 112) | private Rectangle GetSelectedItemRectangle() method OnButtonPressEvent (line 124) | protected override bool OnButtonPressEvent(EventButton ev) method PixelsX (line 189) | internal float PixelsX(float x) method PixelsY (line 194) | internal float PixelsY(float y) method SetItemsHitArea (line 199) | private void SetItemsHitArea() method GetLeftAreaPosition (line 246) | private int GetLeftAreaPosition() method OnDrawn (line 262) | protected override bool OnDrawn(Context g) method DrawString (line 362) | private void DrawString(string s, Context g, Rectangle r) method OnSizeAllocated (line 449) | protected override void OnSizeAllocated(Gdk.Rectangle allocation) method Destroy (line 455) | public override void Destroy() method OnGetPreferredWidth (line 466) | protected override void OnGetPreferredWidth(out int minimumWidth, out ... method OnGetPreferredHeight (line 480) | protected override void OnGetPreferredHeight(out int minimumHeight, ou... class HitListEntry (line 494) | private class HitListEntry method HitListEntry (line 500) | internal HitListEntry(Rectangle r, PageItem pitem) method HitListEntry (line 507) | internal HitListEntry(PagePolygon pp, float x, float y, ReportArea ra) method Contains (line 525) | internal bool Contains(PointD p) method PointInPolygon (line 535) | private bool PointInPolygon(PointD p) FILE: RdlGtk3/ReportExporter.cs class ReportExporter (line 9) | public static class ReportExporter method GetParmeters (line 19) | private static ListDictionary GetParmeters(string parms) method GetReport (line 51) | private static async Task GetReport(string reportSource) method Export (line 85) | public static async Task Export(Uri filename, string parameters, strin... method Export (line 103) | public static async Task Export(string source, string parameters, stri... method Export (line 118) | public static async Task Export(Uri filename, string fileName, OutputP... method Export (line 132) | public static async Task Export(Uri sourcefile, string parameters, str... method Export (line 147) | public static async Task Export(string source, string parameters, stri... method ExportToMemoryStream (line 186) | public static async Task ExportToMemoryStream(Uri filena... method ExportToMemoryStream (line 204) | public static async Task ExportToMemoryStream(string sou... method ExportToMemoryStream (line 219) | public static async Task ExportToMemoryStream(Uri filena... method ExportToMemoryStream (line 233) | public static async Task ExportToMemoryStream(Uri source... method ExportToMemoryStream (line 248) | public static async Task ExportToMemoryStream(string sou... FILE: RdlGtk3/ReportViewer.cs class ReportViewer (line 41) | [ToolboxItem(true)] method ReportViewer (line 76) | public ReportViewer() method Build (line 126) | protected virtual void Build() method LoadReport (line 223) | public async Task LoadReport(Uri filename, string parameters, string c... method LoadReport (line 247) | public async Task LoadReport(string source, string parameters, string ... method LoadReport (line 265) | public async Task LoadReport(Uri filename, OutputPresentationType[] re... method LoadReport (line 279) | public async Task LoadReport(Uri sourcefile, string parameters, method LoadReport (line 297) | public async Task LoadReport(string source, string parameters, method RefreshReport (line 324) | private async Task RefreshReport() method OnZoomOutActionActivated (line 381) | protected void OnZoomOutActionActivated(object sender, EventArgs e) method OnZoomInActionActivated (line 393) | protected void OnZoomInActionActivated(object sender, EventArgs e) method GetParmeters (line 407) | private ListDictionary GetParmeters(string parms) method GetReport (line 434) | private async Task GetReport(string reportSource) method OnErrorsActionToggled (line 472) | private void OnErrorsActionToggled(object sender, EventArgs e) method CheckVisibility (line 479) | private void CheckVisibility() method OnShown (line 498) | protected override void OnShown() method DisableActions (line 504) | private void DisableActions() method EnableActions (line 515) | private void EnableActions() method AddParameterControls (line 526) | private void AddParameterControls() method SetParametersFromControls (line 577) | private void SetParametersFromControls() method SetErrorMessages (line 590) | private void SetErrorMessages(IList errors) method OnPdfActionActivated (line 615) | protected async void OnPdfActionActivated(object sender, EventArgs e) method SaveReport (line 620) | public async Task SaveReport() method ExportReport (line 883) | private async Task ExportReport(Report report, string FileName, Output... method OnPrintActionActivated (line 901) | protected void OnPrintActionActivated(object sender, EventArgs e) method PrintReport (line 905) | public void PrintReport() method HandlePrintBeginPrint (line 931) | private void HandlePrintBeginPrint(object o, BeginPrintArgs args) method HandlePrintDrawPage (line 936) | private void HandlePrintDrawPage(object o, DrawPageArgs args) method HandlePrintEndPrint (line 950) | private void HandlePrintEndPrint(object o, EndPrintArgs args) method OnRefreshActionActivated (line 960) | protected async void OnRefreshActionActivated(object sender, EventArgs e) method OnHpanedReportSizeAllocated (line 965) | protected void OnHpanedReportSizeAllocated(object o, SizeAllocatedArgs... method Destroy (line 977) | public override void Destroy() method OnDeleteEvent (line 982) | protected void OnDeleteEvent(object sender, DeleteEventArgs a) FILE: RdlGtk3Viewer/Program.cs class MainClass (line 5) | class MainClass method Main (line 7) | public static void Main(string[] args) FILE: RdlMapFile/DPSimp.cs class DPSimp (line 33) | public class DPSimp method DPSimp (line 45) | internal DPSimp(Point[] vec) method GetDouglasPeuckerSimplified (line 50) | internal Point[] GetDouglasPeuckerSimplified() class HOMOG (line 67) | class HOMOG method ToString (line 73) | new public string ToString() method Find_Split (line 79) | void Find_Split(int i, int j, out int split, out float dist) /* linear... method CROSSPROD_2CCH (line 104) | void CROSSPROD_2CCH(Point p, Point q, HOMOG r) /* 2-d cartesian to ho... method DOTPROD_2CH (line 111) | float DOTPROD_2CH(Point p, HOMOG q) /* 2-d cartesian to homog dot prod... method DPbasic (line 116) | void DPbasic(int i, int j) /* Basic DP line simplification */ method Output (line 139) | void Output(int i, int j) FILE: RdlMapFile/DesignXmlDraw.cs class DesignXmlDraw (line 23) | internal class DesignXmlDraw: UserControl type ToolMode (line 54) | internal enum ToolMode // The tool mode affect how mo... method DesignXmlDraw (line 62) | internal DesignXmlDraw():base() method SelectAll (line 125) | internal void SelectAll() method SelectByKey (line 138) | internal void SelectByKey(List select) method ClearUndo (line 189) | internal void ClearUndo() method Undo (line 197) | internal void Undo() method StartUndoGroup (line 226) | internal void StartUndoGroup(String description) method EndUndoGroup (line 233) | internal void EndUndoGroup() method CanPaste (line 248) | public bool CanPaste() method Copy (line 265) | public void Copy() method Paste (line 283) | public bool Paste(Point offset) method Paste (line 298) | public bool Paste(Point offset, string t) method ReducePointCount (line 397) | public int ReducePointCount() method SizeSelected (line 431) | public void SizeSelected(float zoom) method SetMapFile (line 509) | internal void SetMapFile(string file) method SetNew (line 541) | internal void SetNew() method IsInputKey (line 567) | override protected bool IsInputKey(Keys keyData) method OnKeyDown (line 574) | protected override void OnKeyDown(KeyEventArgs e) method MoveSelected (line 661) | private void MoveSelected(int incX, int incY) method MoveItem (line 678) | private void MoveItem(XmlNode n, int incX, int incY) method NextItem (line 714) | void NextItem() method PreviousItem (line 737) | void PreviousItem() method OnMouseDown (line 758) | protected override void OnMouseDown(MouseEventArgs e) method MouseDownContext (line 796) | private void MouseDownContext(MouseEventArgs e) method mc_Popup (line 822) | void mc_Popup(object sender, CancelEventArgs e) method mc_Copy (line 827) | void mc_Copy(object sender, EventArgs e) method mc_Keys (line 832) | void mc_Keys(object sender, EventArgs e) method mc_Paste (line 846) | void mc_Paste(object sender, EventArgs e) method MouseDownILine (line 852) | private void MouseDownILine(MouseEventArgs e) method MouseDownIText (line 877) | private void MouseDownIText(MouseEventArgs e) method MouseDownIPolygon (line 896) | private void MouseDownIPolygon(MouseEventArgs e) method MouseDownSelection (line 924) | private void MouseDownSelection(MouseEventArgs e) method OnMouseMove (line 975) | protected override void OnMouseMove(MouseEventArgs e) method SetCursor (line 1009) | private void SetCursor(MouseEventArgs e) method HitTest (line 1031) | private XmlNode HitTest(IEnumerable ienum, Point point) method HitTest (line 1047) | private XmlNode HitTest(XmlNode xNode, Point point) method IsHit (line 1058) | private bool IsHit(XmlNode xNode, Point point) method ApplyZoom (line 1087) | private void ApplyZoom(Point[] pts) method OnMouseUp (line 1099) | protected override void OnMouseUp(MouseEventArgs e) method OnMouseWheel (line 1108) | protected override void OnMouseWheel(MouseEventArgs e) method OnPaint (line 1156) | protected override void OnPaint(PaintEventArgs e) method Draw (line 1183) | internal void Draw(System.Drawing.Rectangle cr) method GetRoot (line 1210) | private XmlNode GetRoot() method ProcessMap (line 1221) | private void ProcessMap(XmlNode xNode) method ProcessSelected (line 1246) | private void ProcessSelected() method DrawLines (line 1292) | private void DrawLines(XmlNode xNode, bool bSelected) method GetLineCoord (line 1311) | internal Point[] GetLineCoord(XmlNode xNode, bool bAsIs) method DrawPolygon (line 1327) | private void DrawPolygon(XmlNode xNode, bool bSelected) method GetColor (line 1353) | private Color GetColor(XmlNode cNode) method GetKeysInPolygon (line 1369) | internal string[] GetKeysInPolygon(XmlNode pNode) method GetPolygon (line 1376) | internal Point[] GetPolygon(XmlNode pNode, bool bAsIs) method SetPoints (line 1394) | internal void SetPoints(XmlNode pNode, Point[] pts) method DrawText (line 1412) | private void DrawText(XmlNode xNode, bool bSelected) method GetTextFont (line 1449) | internal Font GetTextFont(XmlNode xNode) method GetTextDecoration (line 1485) | internal string GetTextDecoration(XmlNode xNode) method GetTextFontFamily (line 1492) | internal string GetTextFontFamily(XmlNode xNode) method GetTextFontSize (line 1500) | internal float GetTextFontSize(XmlNode xNode) method IsTextFontWeightBold (line 1516) | internal bool IsTextFontWeightBold(XmlNode xNode) method IsTextFontWeightItalic (line 1524) | internal bool IsTextFontWeightItalic(XmlNode xNode) method GetTextColor (line 1533) | internal Color GetTextColor(XmlNode tNode) method GetTextPoint (line 1541) | internal Point GetTextPoint(XmlNode xNode, bool bAsIs) method GetTextRect (line 1557) | private Rectangle GetTextRect(XmlNode xNode) method InitializeComponent (line 1584) | private void InitializeComponent() method vScrollBar_Scroll (line 1620) | private void vScrollBar_Scroll(object sender, ScrollEventArgs e) method hScrollBar_Scroll (line 1631) | private void hScrollBar_Scroll(object sender, ScrollEventArgs e) method PointInLine (line 1642) | bool PointInLine(Point[] line, Point pt) method PointInPolygon (line 1659) | bool PointInPolygon(Point[] poly, Point p) method SetBackgroundImage (line 1694) | internal void SetBackgroundImage(string fname) method DeleteSelected (line 1735) | internal void DeleteSelected() method CreateElement (line 1750) | internal XmlElement CreateElement(XmlNode parent, string name, string ... method GetNamedChildNode (line 1761) | internal XmlNode GetNamedChildNode(XmlNode xNode, string name) method GetElementValue (line 1775) | internal string GetElementValue(XmlNode parent, string name, string de... method Remove (line 1784) | internal void Remove(XmlNode node) method SetElement (line 1793) | internal XmlNode SetElement(XmlNode parent, string name, string val) method SignalXmlChanged (line 1805) | internal void SignalXmlChanged() method SignalSelectionChanged (line 1812) | internal void SignalSelectionChanged() method SignalToolChanged (line 1818) | internal void SignalToolChanged() method GetAllKeys (line 1824) | internal SortedList GetAllKeys() FILE: RdlMapFile/DialogAbout.Designer.cs class DialogAbout (line 9) | public partial class DialogAbout : System.Windows.Forms.Form method InitializeComponent (line 24) | private void InitializeComponent() method Dispose (line 127) | protected override void Dispose( bool disposing ) FILE: RdlMapFile/DialogAbout.cs class DialogAbout (line 12) | public partial class DialogAbout method DialogAbout (line 14) | public DialogAbout() method lnk_LinkClicked (line 26) | private void lnk_LinkClicked(object sender, LinkLabelLinkClickedEventA... FILE: RdlMapFile/DialogFindByKey.Designer.cs class DialogFindByKey (line 9) | public partial class DialogFindByKey : System.Windows.Forms.Form method InitializeComponent (line 19) | private void InitializeComponent() method Dispose (line 76) | protected override void Dispose( bool disposing ) FILE: RdlMapFile/DialogFindByKey.cs class DialogFindByKey (line 15) | public partial class DialogFindByKey method DialogFindByKey (line 18) | internal DialogFindByKey(DesignXmlDraw dxd) method bOK_Click (line 33) | private void bOK_Click(object sender, EventArgs e) method bCancel_Click (line 46) | private void bCancel_Click(object sender, EventArgs e) FILE: RdlMapFile/MapFile.Designer.cs class MapFile (line 3) | partial class MapFile method Dispose (line 14) | protected override void Dispose(bool disposing) method InitializeComponent (line 29) | private void InitializeComponent() FILE: RdlMapFile/MapFile.cs class MapFile (line 15) | public partial class MapFile : Form, IMessageFilter method MapFile (line 19) | public MapFile(string file) method map_ToolChange (line 56) | void map_ToolChange(DesignXmlDraw dxd) method MapFile_Closing (line 61) | void MapFile_Closing(object sender, CancelEventArgs e) method map_SelectionChange (line 66) | void map_SelectionChange(DesignXmlDraw dxd) method findPropertyRoot (line 97) | private GridItem findPropertyRoot() method findPropertyItem (line 110) | private GridItem findPropertyItem(string label, GridItem root) method map_XmlChange (line 126) | void map_XmlChange(DesignXmlDraw dxd) method map_ZoomChange (line 134) | void map_ZoomChange(DesignXmlDraw dxd) method PreFilterMessage (line 144) | public bool PreFilterMessage(ref Message m) method WindowFromPoint (line 161) | [DllImport("user32.dll")] method SendMessage (line 163) | [DllImport("user32.dll")] method exitToolStripMenuItem_Click (line 166) | private void exitToolStripMenuItem_Click(object sender, EventArgs e) method OkToClose (line 174) | private bool OkToClose() method Save (line 191) | private bool Save() method SaveAs (line 229) | private bool SaveAs() method SetTitle (line 252) | private void SetTitle(bool bModified) method openToolStripMenuItem_Click (line 260) | private void openToolStripMenuItem_Click(object sender, EventArgs e) method setBackgroundImageToolStripMenuItem_Click (line 301) | private void setBackgroundImageToolStripMenuItem_Click(object sender, ... method cbZoom_SelectedIndexChanged (line 325) | private void cbZoom_SelectedIndexChanged(object sender, EventArgs e) method deleteToolStripMenuItem_Click (line 339) | private void deleteToolStripMenuItem_Click(object sender, EventArgs e) method undoToolStripMenuItem_Click (line 344) | private void undoToolStripMenuItem_Click(object sender, EventArgs e) method editToolStripMenuItem_DropDownOpening (line 349) | private void editToolStripMenuItem_DropDownOpening(object sender, Even... method saveToolStripMenuItem_Click (line 359) | private void saveToolStripMenuItem_Click(object sender, EventArgs e) method saveAsToolStripMenuItem_Click (line 364) | private void saveAsToolStripMenuItem_Click(object sender, EventArgs e) method aboutToolStripMenuItem_Click (line 370) | private void aboutToolStripMenuItem_Click(object sender, EventArgs e) method insertPolygonToolStripMenuItem_Click (line 378) | private void insertPolygonToolStripMenuItem_Click(object sender, Event... method insertTextToolStripMenuItem_Click (line 384) | private void insertTextToolStripMenuItem_Click(object sender, EventArg... method insertLineToolStripMenuItem_Click (line 390) | private void insertLineToolStripMenuItem_Click(object sender, EventArg... method selectionToolStripMenuItem_Click (line 396) | private void selectionToolStripMenuItem_Click(object sender, EventArgs e) method newToolStripMenuItem_Click (line 402) | private void newToolStripMenuItem_Click(object sender, EventArgs e) method selectAllToolStripMenuItem_Click (line 412) | private void selectAllToolStripMenuItem_Click(object sender, EventArgs e) method copyToolStripMenuItem_Click (line 417) | private void copyToolStripMenuItem_Click(object sender, EventArgs e) method pasteToolStripMenuItem_Click (line 422) | private void pasteToolStripMenuItem_Click(object sender, EventArgs e) method cutToolStripMenuItem_Click (line 427) | private void cutToolStripMenuItem_Click(object sender, EventArgs e) method helpHelpToolStripMenuItem_Click (line 433) | private void helpHelpToolStripMenuItem_Click(object sender, EventArgs e) method supportToolStripMenuItem_Click (line 446) | private void supportToolStripMenuItem_Click(object sender, EventArgs e) method importMenuItem_Click (line 459) | private void importMenuItem_Click(object sender, EventArgs e) method HandlePolygon (line 502) | private void HandlePolygon(StringBuilder sb, float xOffset, float yOff... method MercatorConversion (line 567) | private PointF MercatorConversion(PointF ll) method Degrees2Radians (line 582) | private double Degrees2Radians(double d) method Radians2Degrees (line 587) | private double Radians2Degrees(double r) method reducePolygonPointsToolStripMenuItem_Click (line 592) | private void reducePolygonPointsToolStripMenuItem_Click(object sender,... method sizePolygonPoints_Click (line 599) | private void sizePolygonPoints_Click(object sender, EventArgs e) method menuFindByKey_Click (line 606) | private void menuFindByKey_Click(object sender, EventArgs e) FILE: RdlMapFile/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlMapFile/Properties/Settings.Designer.cs class Settings (line 14) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] FILE: RdlMapFile/RdlMapFile.cs class RdlMapFile (line 7) | static class RdlMapFile method Main (line 12) | [STAThread] FILE: RdlMapFile/RdlProperties/Categories.Designer.cs class Categories (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Categories (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlMapFile/RdlProperties/Descriptions.Designer.cs class Descriptions (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Descriptions (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlMapFile/RdlProperties/DisplayNames.Designer.cs class DisplayNames (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method DisplayNames (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlMapFile/RdlProperties/LocalizedCategoryAttribute.cs class LocalizedCategoryAttribute (line 7) | internal class LocalizedCategoryAttribute : CategoryAttribute method LocalizedCategoryAttribute (line 9) | internal LocalizedCategoryAttribute(string category) method GetLocalizedString (line 14) | protected override string GetLocalizedString(string value) FILE: RdlMapFile/RdlProperties/LocalizedDescriptionAttribute.cs class LocalizedDescriptionAttribute (line 6) | public class LocalizedDescriptionAttribute : DescriptionAttribute method LocalizedDescriptionAttribute (line 8) | public LocalizedDescriptionAttribute(string description) FILE: RdlMapFile/RdlProperties/LocalizedDisplayNameAttribute.cs class LocalizedDisplayNameAttribute (line 6) | internal class LocalizedDisplayNameAttribute : DisplayNameAttribute method LocalizedDisplayNameAttribute (line 8) | internal LocalizedDisplayNameAttribute(string displayName) FILE: RdlMapFile/RdlProperties/PropertyBase.cs class PropertyBase (line 20) | [DefaultProperty("Text")] method PropertyBase (line 25) | internal PropertyBase(DesignXmlDraw d) method GetTextValue (line 35) | internal string GetTextValue(string l) method SetTextValue (line 41) | internal void SetTextValue(string l, string v) method SetTextValue (line 55) | internal void SetTextValue(string l, float f) FILE: RdlMapFile/RdlProperties/PropertyLine.cs class PropertyLine (line 11) | [DefaultProperty("Line")] method PropertyLine (line 15) | internal PropertyLine(DesignXmlDraw d):base(d) FILE: RdlMapFile/RdlProperties/PropertyPolygon.cs class PropertyPolygon (line 13) | [DefaultProperty("Polygon")] method PropertyPolygon (line 17) | internal PropertyPolygon(DesignXmlDraw d):base(d) FILE: RdlMapFile/RdlProperties/PropertyText.cs class PropertyText (line 13) | [DefaultProperty("Text")] method PropertyText (line 17) | internal PropertyText(DesignXmlDraw d):base(d) FILE: RdlMapFile/Resources/Strings.Designer.cs class Strings (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Strings (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlMapFile/ShapeFile.cs type ShapeType (line 49) | public enum ShapeType class ShapeFileHeader (line 95) | public class ShapeFileHeader method ShapeFileHeader (line 114) | public ShapeFileHeader() method ToString (line 213) | public override string ToString() class ShapeFileRecord (line 228) | public class ShapeFileRecord method ShapeFileRecord (line 256) | public ShapeFileRecord() method ToString (line 384) | public override string ToString() class ShapeFileReadInfo (line 399) | public class ShapeFileReadInfo method ShapeFileReadInfo (line 413) | public ShapeFileReadInfo() method ToString (line 471) | public override string ToString() class ShapeFile (line 495) | public class ShapeFile method ShapeFile (line 518) | public ShapeFile() method Read (line 549) | public void Read(string fileName) method ReadShapes (line 570) | public void ReadShapes(string fileName) method ReadShapes (line 582) | public void ReadShapes(Stream stream) method ReadShapeFileHeader (line 607) | public void ReadShapeFileHeader(Stream stream) method ReadShapeFileRecord (line 659) | public ShapeFileRecord ReadShapeFileRecord(Stream stream) method ReadAttributes (line 713) | public void ReadAttributes(string dbaseFile) method ToString (line 792) | public override string ToString() method ReadInt32_LE (line 805) | private static int ReadInt32_LE(Stream stream) method ReadInt32_BE (line 824) | private static int ReadInt32_BE(Stream stream) method ReadDouble64_LE (line 843) | private static double ReadDouble64_LE(Stream stream) method ReadPoint (line 861) | private static void ReadPoint(Stream stream, ShapeFileRecord record) method ReadMultipoint (line 881) | private static void ReadMultipoint(Stream stream, ShapeFileRecord record) method ReadPolygon (line 907) | private static void ReadPolygon(Stream stream, ShapeFileRecord record) method MergeAttributes (line 940) | private void MergeAttributes(DataTable table) FILE: RdlMapFile/Undo.cs class Undo (line 11) | internal class Undo method Undo (line 21) | internal Undo(XmlDocument doc, int levels) method Reset (line 57) | internal void Reset() method NodeChanging (line 68) | private void NodeChanging(object sender, XmlNodeChangedEventArgs e) method NodeChanged (line 89) | private void NodeChanged(object sender, XmlNodeChangedEventArgs e) method undo (line 129) | internal void undo() method StartUndoGroup (line 142) | internal void StartUndoGroup(String description) method EndUndoGroup (line 149) | internal void EndUndoGroup() method EndUndoGroup (line 154) | internal void EndUndoGroup(bool keepChanges) type UndoItem (line 171) | internal interface UndoItem method Undo (line 173) | void Undo(); method GetDescription (line 174) | String GetDescription(); class NodeInsertedUndo (line 177) | internal class NodeInsertedUndo : UndoItem method NodeInsertedUndo (line 181) | public NodeInsertedUndo(XmlNodeChangedEventArgs e, object previous) method Undo (line 186) | public void Undo() method GetDescription (line 196) | public String GetDescription() method PreviousState (line 201) | static internal object PreviousState(XmlNodeChangedEventArgs e) class NodeRemovedUndo (line 207) | internal class NodeRemovedUndo : UndoItem method NodeRemovedUndo (line 213) | internal NodeRemovedUndo(XmlNodeChangedEventArgs e, object previous) method Undo (line 220) | public void Undo() method GetDescription (line 225) | public String GetDescription() method PreviousState (line 230) | static internal object PreviousState(XmlNodeChangedEventArgs e) class NodeChangedUndo (line 240) | internal class NodeChangedUndo : UndoItem method NodeChangedUndo (line 245) | internal NodeChangedUndo(XmlNodeChangedEventArgs e, object pValue) method Undo (line 251) | public void Undo() method GetDescription (line 256) | public String GetDescription() method PreviousState (line 261) | static internal object PreviousState(XmlNodeChangedEventArgs e) class UndoGroup (line 271) | internal class UndoGroup : UndoItem method UndoGroup (line 277) | internal UndoGroup(Undo undo, String description) method AddUndoItem (line 283) | internal void AddUndoItem(UndoItem ui) method Undo (line 293) | public void Undo() method GetDescription (line 304) | public String GetDescription() FILE: RdlReader/DialogAbout.Designer.cs class DialogAbout (line 9) | public partial class DialogAbout : System.Windows.Forms.Form method InitializeComponent (line 23) | private void InitializeComponent() method Dispose (line 119) | protected override void Dispose( bool disposing ) FILE: RdlReader/DialogAbout.cs class DialogAbout (line 12) | public partial class DialogAbout method DialogAbout (line 14) | public DialogAbout() method lnk_LinkClicked (line 26) | private void lnk_LinkClicked(object sender, LinkLabelLinkClickedEventA... FILE: RdlReader/MDIChild.Designer.cs class MDIChild (line 9) | public partial class MDIChild : Form FILE: RdlReader/MDIChild.cs class MDIChild (line 18) | public partial class MDIChild method MDIChild (line 22) | public MDIChild(int width, int height) method SetSourceFile (line 53) | public async Task SetSourceFile(Uri file) method InitializeComponent (line 81) | private void InitializeComponent() FILE: RdlReader/Properties/Resources.Designer.cs class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Resources (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlReader/RdlReader.Designer.cs class RdlReader (line 9) | public partial class RdlReader : System.Windows.Forms.Form method InitializeComponent (line 16) | private void InitializeComponent() method Dispose (line 360) | protected override void Dispose( bool disposing ) FILE: RdlReader/RdlReader.cs class RdlReader (line 23) | public partial class RdlReader : IMessageFilter method RdlReader (line 35) | public RdlReader() : this(false) method RdlReader (line 39) | [Obsolete("This constructor was only for Mono compatibility, use RdlRe... method RdlReader_Load (line 58) | public async void RdlReader_Load(object sender, EventArgs e) method PreFilterMessage (line 94) | public bool PreFilterMessage(ref Message m) method WindowFromPoint (line 111) | [DllImport("user32.dll")] method SendMessage (line 113) | [DllImport("user32.dll")] method GetPassword (line 121) | string GetPassword() method Main (line 152) | [STAThread] method SilentPrint (line 235) | public static async Task SilentPrint(string reportPath, string paramet... method BuildMenus (line 288) | private void BuildMenus() method menuFile_Popup (line 316) | private void menuFile_Popup(object sender, EventArgs e) method menuFileClose_Click (line 328) | private void menuFileClose_Click(object sender, EventArgs e) method menuFileExit_Click (line 335) | private void menuFileExit_Click(object sender, EventArgs e) method menuFileOpen_Click (line 340) | private async void menuFileOpen_Click(object sender, EventArgs e) method menuRecentItem_Click (line 357) | private async void menuRecentItem_Click(object sender, System.EventArg... method CreateMDIChild (line 366) | private async Task CreateMDIChild(Uri file, bool bMenuUpdate) method menuFilePrint_Click (line 394) | private async void menuFilePrint_Click(object sender, EventArgs e) method menuFileSaveAs_Click (line 440) | private async void menuFileSaveAs_Click(object sender, EventArgs e) method menuHelpAbout_Click (line 535) | private void menuHelpAbout_Click(object sender, System.EventArgs ea) method menuCopy_Click (line 541) | private void menuCopy_Click(object sender, System.EventArgs ea) method menuFind_Click (line 550) | private async void menuFind_Click(object sender, System.EventArgs ea) method menuSelection_Click (line 561) | private void menuSelection_Click(object sender, System.EventArgs ea) method menuEdit_Popup (line 569) | private void menuEdit_Popup(object sender, EventArgs e) method menuView_Popup (line 583) | private void menuView_Popup(object sender, EventArgs e) method menuPL_Popup (line 608) | private void menuPL_Popup(object sender, EventArgs e) method menuPLZoomTo_Click (line 634) | private void menuPLZoomTo_Click(object sender, EventArgs e) method menuPLActualSize_Click (line 645) | private void menuPLActualSize_Click(object sender, EventArgs e) method menuPLFitPage_Click (line 652) | private void menuPLFitPage_Click(object sender, EventArgs e) method menuPLFitWidth_Click (line 659) | private void menuPLFitWidth_Click(object sender, EventArgs e) method menuPLSinglePage_Click (line 666) | private void menuPLSinglePage_Click(object sender, EventArgs e) method menuPLContinuous_Click (line 673) | private void menuPLContinuous_Click(object sender, EventArgs e) method menuPLFacing_Click (line 680) | private void menuPLFacing_Click(object sender, EventArgs e) method menuPLContinuousFacing_Click (line 687) | private void menuPLContinuousFacing_Click(object sender, EventArgs e) method menuWnd_Popup (line 694) | private void menuWnd_Popup(object sender, EventArgs e) method menuWndCascade_Click (line 704) | private void menuWndCascade_Click(object sender, EventArgs e) method menuWndCloseAll_Click (line 709) | private void menuWndCloseAll_Click(object sender, EventArgs e) method menuWndTileH_Click (line 717) | private void menuWndTileH_Click(object sender, EventArgs e) method menuWndTileV_Click (line 722) | private void menuWndTileV_Click(object sender, EventArgs e) method RdlReader_Closing (line 727) | private void RdlReader_Closing(object sender, System.ComponentModel.Ca... method NoteRecentFiles (line 732) | private void NoteRecentFiles(Uri name, bool bResetMenu) method RecentFilesMenu (line 754) | private void RecentFilesMenu() method GetStartupState (line 768) | private void GetStartupState() method SaveStartupState (line 834) | private void SaveStartupState() FILE: RdlReader/Resources/Strings.Designer.cs class Strings (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Strings (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlReader/ZoomTo.Designer.cs class ZoomTo (line 9) | public partial class ZoomTo : System.Windows.Forms.Form method InitializeComponent (line 19) | private void InitializeComponent() method Dispose (line 82) | protected override void Dispose( bool disposing ) FILE: RdlReader/ZoomTo.cs class ZoomTo (line 16) | public partial class ZoomTo method ZoomTo (line 18) | public ZoomTo(RdlViewer.RdlViewer viewer) method bOK_Click (line 44) | private void bOK_Click(object sender, System.EventArgs e) method bCancel_Click (line 74) | private void bCancel_Click(object sender, System.EventArgs e) FILE: RdlTests/DataTests/DataTests.cs class Form1 (line 17) | public class Form1 : System.Windows.Forms.Form method Form1 (line 41) | public Form1() method InitMenuItems (line 58) | void InitMenuItems() method rdlViewer_Hyperlink (line 71) | void rdlViewer_Hyperlink(object source, HyperlinkEventArgs e) method rdlViewer_SubreportDataRetrieval (line 80) | void rdlViewer_SubreportDataRetrieval(object sender, SubreportDataRetr... method GetPassword (line 88) | string GetPassword() method menuResources_Click (line 100) | private void menuResources_Click(object sender, EventArgs e) method Dispose (line 113) | protected override void Dispose( bool disposing ) method InitializeComponent (line 130) | private void InitializeComponent() method Main (line 351) | [STAThread] method bSetReport_Click (line 357) | private void bSetReport_Click(object sender, System.EventArgs e) method ManualDataTable_Click (line 444) | private void ManualDataTable_Click(object sender, System.EventArgs e) method bXMLData_Click (line 473) | private void bXMLData_Click(object sender, System.EventArgs e) method bIDataReader_Click (line 500) | private void bIDataReader_Click(object sender, System.EventArgs e) method bDataSource_Click (line 552) | private void bDataSource_Click(object sender, System.EventArgs e) method bEnumerable_Click (line 598) | private void bEnumerable_Click(object sender, System.EventArgs e) method bParameters_Click (line 629) | private void bParameters_Click(object sender, System.EventArgs e) method bSetParm_Click (line 748) | private void bSetParm_Click(object sender, System.EventArgs e) method bOpen_Click (line 754) | private void bOpen_Click(object sender, EventArgs e) method rdlViewer_KeyPress (line 768) | private void rdlViewer_KeyPress(object sender, KeyPressEventArgs e) method chkFind_CheckedChanged (line 774) | private void chkFind_CheckedChanged(object sender, EventArgs e) method bPageUp_Click (line 779) | private void bPageUp_Click(object sender, EventArgs e) method bPageDown_Click (line 788) | private void bPageDown_Click(object sender, EventArgs e) class Contact (line 794) | class Contact method Contact (line 799) | public Contact (string contact, string phone) FILE: RdlTests/TestLibrary/TestClass.cs class TestClass (line 7) | public class TestClass method Test (line 9) | public static string Test() class XTestClass (line 14) | public class XTestClass : TestClass method XTest (line 16) | public static string XTest() class Util (line 22) | public static class Util method GetDateTime (line 24) | public static DateTime? GetDateTime() method Test (line 28) | public static decimal Test(DateTime? d) FILE: RdlViewer.Tests/ParameterSettingMethodsTest.cs class ParameterSettingMethodsTest (line 10) | [TestFixture] method SetJsonParameterWithAmpersAndSpecialValues (line 13) | [Test] method SetParametersWithAmpersandSeparation (line 35) | [TestCase("normaltest", "normalvalue", ExpectedResult = true)] // this... FILE: RdlViewer/DataSourcePassword.Designer.cs class DataSourcePassword (line 9) | public partial class DataSourcePassword : System.Windows.Forms.Form method InitializeComponent (line 18) | private void InitializeComponent() method Dispose (line 69) | protected override void Dispose( bool disposing ) FILE: RdlViewer/DataSourcePassword.cs class DataSourcePassword (line 15) | public partial class DataSourcePassword method DataSourcePassword (line 18) | public DataSourcePassword() FILE: RdlViewer/DialogMessages.Designer.cs class DialogMessages (line 9) | public partial class DialogMessages : System.Windows.Forms.Form method InitializeComponent (line 16) | private void InitializeComponent() method Dispose (line 54) | protected override void Dispose( bool disposing ) FILE: RdlViewer/DialogMessages.cs class DialogMessages (line 13) | public partial class DialogMessages method DialogMessages (line 16) | public DialogMessages(IList msgs) FILE: RdlViewer/PageDrawing.cs class PageDrawing (line 21) | public class PageDrawing : UserControl method PageDrawing (line 53) | public PageDrawing() : this(null) method PageDrawing (line 57) | public PageDrawing(Pages pgs) method SelectTextHtml (line 189) | private void SelectTextHtml(PageTextHtml ph, StringBuilder sb) method ComparePageItemByPageXY (line 214) | private static int ComparePageItemByPageXY(PageItem pi1, PageItem pi2) method IsInputKey (line 247) | protected override bool IsInputKey(Keys keyData) method Draw (line 267) | public async Task Draw(Graphics g, int page, System.Drawing.Rectangle ... method Draw (line 309) | public async Task Draw(Graphics g, float zoom, float leftOffset, float... method OnMouseDown (line 381) | override protected void OnMouseDown(MouseEventArgs mea) method MouseDownRubberBand (line 418) | private bool MouseDownRubberBand(MouseEventArgs e) method OnMouseUp (line 440) | protected override void OnMouseUp(MouseEventArgs e) method OnMouseLeave (line 474) | override protected void OnMouseLeave(EventArgs ea) method OnMouseMove (line 479) | override protected void OnMouseMove(MouseEventArgs mea) method RubberBand (line 524) | private void RubberBand(Point p1, Point p2) method CreateSelectionList (line 539) | private void CreateSelectionList(Rectangle rc, bool bCtrlOn) method RectFromPoints (line 574) | private Rectangle RectFromPoints(Point p1, Point p2) method SetHitListCursor (line 602) | private void SetHitListCursor(HitListEntry hle) method SetHitListTooltip (line 614) | private void SetHitListTooltip(HitListEntry hle) method GetHitListEntry (line 625) | private HitListEntry GetHitListEntry(MouseEventArgs mea) method PixelsX (line 646) | internal float PixelsX(float x) method PixelsY (line 651) | internal float PixelsY(float y) method ProcessPage (line 657) | private async Task ProcessPage(Graphics g, IEnumerable p, RectangleF c... method DrawBackground (line 765) | private void DrawBackground(Graphics g, System.Drawing.RectangleF rect... method DrawBorder (line 876) | private void DrawBorder(PageItem pi, Graphics g, RectangleF r) method DrawImage (line 896) | private void DrawImage(PageImage pi, Graphics g, RectangleF r) method DrawImageBackground (line 915) | private void DrawImageBackground(PageImage pi, StyleInfo si, Graphics ... method DrawImageSized (line 997) | private void DrawImageSized(PageImage pi, Image im, Graphics g, Rectan... method DrawLine (line 1087) | private void DrawLine(Color c, BorderStyleEnum bs, float w, Graphics g, method DrawCurve (line 1124) | private void DrawCurve(Color c, BorderStyleEnum bs, float w, Graphics g, method ProcessHtml (line 1172) | private async Task ProcessHtml(PageTextHtml pth, Graphics g, Rectangle... method DrawEllipse (line 1178) | private void DrawEllipse(PageEllipse pe, Graphics g, RectangleF r) method FillPolygon (line 1211) | private void FillPolygon(PagePolygon pp, Graphics g, RectangleF r) method DrawPie (line 1230) | private void DrawPie(PagePie pp, Graphics g, RectangleF r) method DrawString (line 1264) | private void DrawString(PageText pt, Graphics g, RectangleF r) method HighlightString (line 1404) | private void HighlightString(Graphics g, PageText dtext, RectangleF r,... class HitListEntry (line 1473) | class HitListEntry method HitListEntry (line 1478) | internal HitListEntry(RectangleF r, PageItem pitem) method HitListEntry (line 1484) | internal HitListEntry(PagePolygon pp, float x, float y, PageDrawing pd) method Contains (line 1500) | internal bool Contains(PointF p) method PointInPolygon (line 1510) | bool PointInPolygon(PointF p) method InitializeComponent (line 1546) | private void InitializeComponent() FILE: RdlViewer/RdlViewer.Designer.cs class RdlViewer (line 9) | public partial class RdlViewer method InitializeComponent (line 26) | private void InitializeComponent() FILE: RdlViewer/RdlViewer.cs class RdlViewer (line 25) | public partial class RdlViewer : System.Windows.Forms.UserControl method RdlViewer (line 170) | public RdlViewer() method Focus (line 251) | public new bool Focus() method FindNext (line 315) | public async Task FindNext() method Report (line 462) | public async Task Report() method Rebuild (line 471) | public async Task Rebuild() method Copy (line 535) | public void Copy() method SetSourceFile (line 576) | public async Task SetSourceFile(Uri value) method SetSourceRdl (line 601) | public async Task SetSourceRdl(string value) method SetReportParametersAmpersandSeparated (line 681) | public void SetReportParametersAmpersandSeparated(string parameterString) method SetReportParametersAsJson (line 699) | public void SetReportParametersAsJson(string jsonParameterString) method SetReportParameters (line 705) | public void SetReportParameters(IDictionary parameters) method Print (line 816) | public async Task Print(PrintDocument pd) method _Print (line 844) | private void _Print(PrintDocument pd) method PrintPage (line 869) | private async void PrintPage(object sender, PrintPageEventArgs e) method SaveAs (line 914) | public async Task SaveAs(string FileName, Majorsilence.Reporting.Rdl.O... method Find (line 987) | public async Task Find(string search) method Find (line 1000) | public async Task Find(string search, PageItem position, Rdl... method ScrollToPageItem (line 1069) | public async Task ScrollToPageItem(PageItem pi) method DrawPanelPaint (line 1125) | private async void DrawPanelPaint(object sender, System.Windows.Forms.... method DrawPanelResize (line 1163) | private void DrawPanelResize(object sender, EventArgs e) method PointsX (line 1171) | private float PointsX(float x) // pixels to points method PointsY (line 1176) | private float PointsY(float y) method PixelsX (line 1181) | private int PixelsX(float x) // points to pixels method PixelsY (line 1189) | private int PixelsY(float y) method CalcZoom (line 1197) | private void CalcZoom() method CalcZoomFitPage (line 1226) | private void CalcZoomFitPage() method CalcZoomFitWidth (line 1242) | private void CalcZoomFitWidth() method GetReport (line 1258) | private async Task GetReport() method r_SubreportDataRetrieval (line 1353) | void r_SubreportDataRetrieval(object sender, SubreportDataRetrievalEve... method GetReportEmptyMsg (line 1359) | private string GetReportEmptyMsg() method GetReportErrorMsg (line 1365) | private string GetReportErrorMsg() method GetPages (line 1455) | private async Task GetPages() method GetPages (line 1464) | private async Task GetPages(Report report) method GetParameters (line 1502) | private async Task GetParameters() method SetParameterValue (line 1532) | private void SetParameterValue(String key, String value) method GetRdlSource (line 1540) | private string GetRdlSource() method doPossibleDecryption (line 1560) | private String doPossibleDecryption(String rdl) method showWait (line 1581) | private void showWait() method LoadPageIfNeeded (line 1601) | private async Task LoadPageIfNeeded() method ParametersBuild (line 1631) | private void ParametersBuild(Report r) method ParametersLeave (line 1708) | private void ParametersLeave(object sender, EventArgs e) method ParametersTextValidated (line 1728) | private void ParametersTextValidated(object sender, System.EventArgs e) method ParametersViewClick (line 1748) | private async void ParametersViewClick(object sender, System.EventArgs e) method WarningClick (line 1815) | private void WarningClick(object sender, System.EventArgs e) method SetScrollControls (line 1825) | private void SetScrollControls() method SetScrollControlsV (line 1837) | private void SetScrollControlsV() method SetScrollControlsH (line 1878) | private void SetScrollControlsH() method HorizontalScroll (line 1901) | private void HorizontalScroll(object sender, System.Windows.Forms.Scro... method VerticalScroll (line 1912) | private void VerticalScroll(object sender, System.Windows.Forms.Scroll... method ChangePageEvent (line 1932) | private void ChangePageEvent() method DrawPanelMouseWheel (line 1951) | private void DrawPanelMouseWheel(object sender, MouseEventArgs e) method DrawPanelKeyDown (line 2003) | private async void DrawPanelKeyDown(object sender, KeyEventArgs e) method WarningVisible (line 2095) | private bool WarningVisible() method RdlViewer_Layout (line 2103) | private void RdlViewer_Layout(object sender, LayoutEventArgs e) method _WarningButton_Paint (line 2150) | private void _WarningButton_Paint(object sender, PaintEventArgs e) method InvokeHyperlink (line 2166) | internal void InvokeHyperlink(HyperlinkEventArgs hlea) method HideRunButton (line 2172) | public void HideRunButton() method ShowRunButton (line 2177) | public void ShowRunButton() type RdlViewerFinds (line 2183) | public enum RdlViewerFinds type ScrollModeEnum (line 2190) | public enum ScrollModeEnum type ZoomEnum (line 2198) | public enum ZoomEnum class HyperlinkEventArgs (line 2208) | public class HyperlinkEventArgs : System.ComponentModel.CancelEventArgs method HyperlinkEventArgs (line 2212) | public HyperlinkEventArgs(string hyperlink) class PageNavigationEventArgs (line 2224) | public class PageNavigationEventArgs : EventArgs method PageNavigationEventArgs (line 2226) | public PageNavigationEventArgs(int newPage) FILE: RdlViewer/RdlViewerFind.cs class RdlViewerFind (line 21) | public class RdlViewerFind : System.Windows.Forms.UserControl method RdlViewerFind (line 42) | public RdlViewerFind() method InitializeComponent (line 47) | private void InitializeComponent() method bClose_Click (line 133) | private void bClose_Click(object sender, EventArgs e) method bFindNext_Click (line 138) | private async void bFindNext_Click(object sender, EventArgs e) method FindNext (line 143) | public async Task FindNext() method bFindPrevious_Click (line 178) | private async void bFindPrevious_Click(object sender, EventArgs e) method FindPrevious (line 183) | public async Task FindPrevious() method RdlViewerFind_VisibleChanged (line 216) | private async void RdlViewerFind_VisibleChanged(object sender, EventAr... method tbFind_TextChanged (line 234) | private async void tbFind_TextChanged(object sender, EventArgs e) method ckHighlightAll_CheckedChanged (line 245) | private void ckHighlightAll_CheckedChanged(object sender, EventArgs e) method ckMatchCase_CheckedChanged (line 250) | private void ckMatchCase_CheckedChanged(object sender, EventArgs e) FILE: RdlViewer/Resources/Strings.Designer.cs class Strings (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource... method Strings (line 31) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic... FILE: RdlViewer/ViewerToolstrip.cs class ViewerToolstrip (line 14) | public class ViewerToolstrip : ToolStrip method ViewerToolstrip (line 16) | public ViewerToolstrip() method ViewerToolstrip (line 21) | public ViewerToolstrip(RdlViewer viewer) method Init (line 43) | private void Init() method OpenClicked (line 49) | private async void OpenClicked(object sender, System.EventArgs e) method PrintClicked (line 65) | private async void PrintClicked(object sender, System.EventArgs e) method SaveAsClicked (line 92) | private async void SaveAsClicked(object sender, System.EventArgs e) method FirstPageClicked (line 163) | private void FirstPageClicked(object sender, System.EventArgs e) method PreviousPageClicked (line 173) | private void PreviousPageClicked(object sender, System.EventArgs e) method NextPageClicked (line 189) | private void NextPageClicked(object sender, System.EventArgs e) method LastPageClicked (line 204) | private void LastPageClicked(object sender, System.EventArgs e) method ZoomInClicked (line 214) | private void ZoomInClicked(object sender, System.EventArgs e) method ZoomOutClicked (line 224) | private void ZoomOutClicked(object sender, System.EventArgs e) method InitializeToolBar (line 234) | private void InitializeToolBar() method HandlePageNavigation (line 253) | void HandlePageNavigation(object sender, PageNavigationEventArgs e) method GetImage (line 258) | private Bitmap GetImage(string resourceName) FILE: ReportDesigner/Program.cs class Program (line 6) | public class Program method Main (line 12) | [STAThread] FILE: ReportTests.Windows/DesignerUtilityTests.cs class DesignerUtilityTests (line 7) | [TestFixture] method ExtractParameterNameFromExpression (line 10) | [TestCase("=Parameters!Test.Value", "Test")] FILE: ReportTests.Windows/StringEncryptionTests.cs class StringEncryptionTests (line 7) | [TestFixture()] method DecryptTest (line 10) | [Test()] method EncryptTest (line 43) | [Test()] FILE: ReportTests/DatabaseInfo.cs class DatabaseInfo (line 8) | public class DatabaseInfo FILE: ReportTests/ExampleTest.cs class ExampleTest (line 6) | public class ExampleTest method Test1 (line 9) | [Test()] FILE: ReportTests/ExcelValetTests.cs class ExcelValetTests (line 16) | [TestFixture] method Prepare2Tests (line 25) | [SetUp] method ExcelValet_Format (line 84) | [Test, TestCaseSource("TestCasesExcelValetFormat")] method SampleTestData (line 125) | public static Dictionary SampleTestData(int maxRows, class ExcelTestData (line 155) | internal class ExcelTestData FILE: ReportTests/FunctionTest.cs class FunctionTest (line 9) | public class FunctionTest method Test1 (line 11) | [Test()] FILE: ReportTests/MajorsilenceDarawingColorTranslatorTests.cs class MajorsilenceDarawingColorTranslatorTests (line 5) | [TestFixture] method FromHtml_ValidHexWithoutHash_ReturnsCorrectColor (line 23) | [Test, TestCaseSource(nameof(TestColors))] FILE: ReportTests/RenderPdf_Base64ImageParameter.cs class RenderPdf_Base64ImageParameter (line 24) | [TestFixture] method Prepare2Tests (line 30) | [SetUp] method Base64ImageParameterTest (line 43) | [Test] method GetBase64Image (line 75) | private string GetBase64Image(string filePath) FILE: ReportTests/RenderPdf_WithBarcodeParameter.cs class RenderPdf_WithBarcodeParameter (line 23) | [TestFixture] method Prepare2Tests (line 29) | [SetUp] method RenderPdf_BarcodeTypesViaParameter (line 49) | [Test, TestCaseSource(nameof(BarCodeTypes))] FILE: ReportTests/RenderPdf_iTextSharpTests.cs class RenderPdf_iTextSharpTests (line 16) | [TestFixture] method Prepare2Tests (line 24) | [SetUp] method RenderPdf_iTextSharpDraw (line 67) | [Test, TestCaseSource("TestCasesRenderPdf_iTextSharpDraw")] FILE: ReportTests/ReportDefnDisposeTest.cs class ReportDefnDisposeTest (line 13) | [TestFixture] method Prepare2Tests (line 18) | [SetUp] method Report_Dispose_ShouldNotThrow (line 25) | [Test] method Report_UsingStatement_ShouldNotThrow (line 41) | [Test] method Report_WithMultipleReports_Dispose_ShouldNotThrow (line 58) | [Test] method Report_AfterDispose_SecondDispose_ShouldNotThrow (line 77) | [Test] FILE: ReportTests/Utils/GeneralUtils.cs class GeneralUtils (line 9) | public static class GeneralUtils method ChangeCurrentCultrue (line 11) | public static void ChangeCurrentCultrue(string cultureName) method OutputTestsFolder (line 18) | public static Uri OutputTestsFolder() method ReportsFolder (line 24) | public static Uri ReportsFolder(string subFoder = null) method CurrentDirectory (line 34) | static string CurrentDirectory() FILE: ReportTests/Utils/OpenXmlUtils.cs class OpenXmlUtils (line 10) | public static class OpenXmlUtils method ValidateSpreadsheetDocument (line 14) | public static bool ValidateSpreadsheetDocument(string calcfile) method ValidateOpenXmlDocument (line 20) | private static bool ValidateOpenXmlDocument(OpenXmlPackage package ) FILE: ReportTests/Utils/RandomDateTime.cs class RandomDateTime (line 8) | public class RandomDateTime method RandomDateTime (line 14) | public RandomDateTime(int yearStart,int monthStart,int dayStart) method Next (line 21) | public DateTime Next() FILE: ReportTests/Utils/RdlUtils.cs class RdlUtils (line 10) | public static class RdlUtils method GetReport (line 12) | public static async Task GetReport(Uri uri2Rdl, string overWri... FILE: ReportTests/iTextSharpTests.cs class iTextSharpTests (line 16) | [TestFixture] method Prepare2Tests (line 25) | [SetUp] method iTextSharpDraw (line 49) | [Test, TestCaseSource("TestCasesiTextSharpDraw")] FILE: Tests/TestParameterNameExtraction.cs class TestParameterNameExtraction (line 6) | [TestFixture] method ExtractNameFromParameterExpression (line 9) | [TestCase("=Parameters!Test.Value", "Test")]