mirror of
https://github.com/demostf/demo.js
synced 2026-06-04 00:54:14 +02:00
dataTable bitcount improvements
This commit is contained in:
parent
0b4f05fc5a
commit
686f240c05
4 changed files with 37 additions and 13 deletions
|
|
@ -23,6 +23,7 @@ export class SendPropDefinition {
|
|||
public lowValue: number;
|
||||
public highValue: number;
|
||||
public bitCount: number;
|
||||
public originalBitCount: number | null = null;
|
||||
public table: SendTable | null;
|
||||
public numElements: number;
|
||||
public arrayProperty: SendPropDefinition | null;
|
||||
|
|
@ -63,7 +64,7 @@ export class SendPropDefinition {
|
|||
data.highValue = this.highValue;
|
||||
}
|
||||
if (this.type === SendPropType.DPT_DataTable && this.table) {
|
||||
data.tableName = this.table.name;
|
||||
data.excludeDTName = this.table.name;
|
||||
}
|
||||
|
||||
return data;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue