mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
Bring in all the extensibility updates we added during the hackathon (#2056)
Extensibility updates
This commit is contained in:
@@ -847,6 +847,14 @@ class TableComponentWrapper extends ComponentWrapper implements sqlops.TableComp
|
||||
this.setProperty('columns', v);
|
||||
}
|
||||
|
||||
public get fontSize(): number | string {
|
||||
return this.properties['fontSize'];
|
||||
}
|
||||
|
||||
public set fontSize(size: number | string) {
|
||||
this.setProperty('fontSize', size);
|
||||
}
|
||||
|
||||
public get selectedRows(): number[] {
|
||||
return this.properties['selectedRows'];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user