diff --git a/Project/Sources/Classes/WPdocument.4dm b/Project/Sources/Classes/WPdocument.4dm index eb19d3f0..c9ed255e 100644 --- a/Project/Sources/Classes/WPdocument.4dm +++ b/Project/Sources/Classes/WPdocument.4dm @@ -180,7 +180,7 @@ Function getBody()->$body : cs:C1710.WPelement // ∆∆∆ //mark:-HEADERS AND FOOTERS Function getHeader($sectionIndex : Integer; $subSectionType : Integer)->$header : cs:C1710.WPelement - var $docHeader : 4D:C1709.WriteElement + var $docHeader : Object //4D.WriteElement Case of : (Count parameters:C259=1) $docHeader:=WP Get header:C1503(This:C1470.document; $sectionIndex) @@ -192,7 +192,7 @@ Function getHeader($sectionIndex : Integer; $subSectionType : Integer)->$header End if Function getFooter($sectionIndex : Integer; $subSectionType : Integer)->$footer : cs:C1710.WPelement - var $docFooter : 4D:C1709.WriteElement + var $docFooter : Object //4D.WriteElement Case of : (Count parameters:C259=1) $docFooter:=WP Get footer:C1504(This:C1470.document; $sectionIndex) diff --git a/Project/Sources/Classes/WPtable.4dm b/Project/Sources/Classes/WPtable.4dm index d0769124..f84728aa 100644 --- a/Project/Sources/Classes/WPtable.4dm +++ b/Project/Sources/Classes/WPtable.4dm @@ -2,36 +2,28 @@ Class extends WPelement -Class constructor($table : 4D:C1709.WriteElement) +Class constructor($table : Object) //4D.WriteElement) Super:C1705($table) This:C1470.table:=$table -Function appendRow + //Function appendRow -Function deleteColumns + //Function deleteColumns -Function deleteRows + //Function deleteRows -Function getCells + //Function getCells -Function getColumns + //Function getColumns -Function getRows + //Function getRows -Function insertColumns + //Function insertColumns -Function insertRows + //Function insertRows - //WP Table append row - //WP TABLE DELETE COLUMNS - //WP TABLE DELETE ROWS - //WP Table get cells - //WP Table get columns - //WP Table get rows - //WP Table insert columns - //WP Table insert rows \ No newline at end of file