|
一時期/支部 14. Calc 文書s - Page 355, 名簿(に載せる)/表(にあげる)ing 29 - How to break a link
Frank Jarratt asked the に引き続いて question: This 大型の, "LinkASheet", creates a sheet link. How can I 除去する it
besides using the menu: Edit | Links?
Before 調査, I 推定する/予想するd it to either 配置する/処分する/したい気持ちにさせる the link or 除去する the link from the コンテナ. It turns out that the link can be 除去するd from the コンテナ (in a fashion), but the コンテナ is really the sheet, not the SheetLinks 反対する. In other words, I 検査/視察するd three 反対するs before I 設立する the answer.
Each sheet supports the XSheetLinkable interface as is shown in (米)棚上げする/(英)提議する 33 on page 355. There are two errors in (米)棚上げする/(英)提議する 33 as shown above. If you 始める,決める the link 方式 to NONE, then the link is broken. For the 名簿(に載せる)/表(にあげる)ing that you について言及する in the 調書をとる/予約する, you could 追加する the に引き続いて code to 除去する the link
oSheets.getByName("LinkIt").setLinkMode(com.sun.星/主役にする.sheet.SheetLinkMode.NONE)
一時期/支部 14, page 328, the CellAddressConverter
The 行為 of the CellAddressConverter, which 陳列する,発揮するs a Calc 独房 in a human readable form, is not
working as 推定する/予想するd. In OOo 見解/翻訳/版 1.1.2, the UserInterfaceRepresentation 所有物/資産/財産 does not 含む/封じ込める
the 含む/封じ込めるs the sheet 指名する if the 独房 is in Sheet1, and it does if the 独房 is in any other sheet.
An 問題/発行する has been created in Issuezilla to 跡をつける this discrepency
(see http://www.openoffice.org/問題/発行するs/show_bug.cgi?id=32817). I 修正するd 名簿(に載せる)/表(にあげる)ing 5 on page 328 to 反映する
these changes and I 変えるd the 名簿(に載せる)/表(にあげる)ing to be subroutine rather than just a stub.
Sub DemoCellAddressConversion
薄暗い oConv
薄暗い oCell
oConv = ThisComponent.CreateInstance("com.sun.星/主役にする.(米)棚上げする/(英)提議する.CellAddressConversion")
oCell = ThisComponent.Sheets(2).getCellByPosition(0,0) '独房 Sheet3.A1
oConv.演説(する)/住所 = oCell.getCellAddress()
Print oConv.UserInterfaceRepresentation 'Sheet3.A1
Print oConv.PersistentRepresentation 'Sheet3.A1
End Sub
一時期/支部 14, page 336, 名簿(に載せる)/表(にあげる)ing 11 "SetValidationRange"
The two lines:
Validation.setFormula1(1.0)
Validation.setFormula1(10.0)
Should read:
Validation.setFormula1(1.0)
Validation.setFormula2(10.0)
一時期/支部 14, page 346
The second paragraph, third 宣告,判決 that says
"The autoFill() method..."
should be
"The fillAuto() method..."
一時期/支部 14, page 355, (米)棚上げする/(英)提議する 33
The 長,率いるing for (米)棚上げする/(英)提議する 33 should read
"(米)棚上げする/(英)提議する 33. Methods defined by the XSheetLinkable interface."
Also, the (米)棚上げする/(英)提議する 名簿(に載せる)/表(にあげる)s the method
"getLinkMode(SheetLinkMode)"
which should read
"setLinkMode(SheetLinkMode)"
一時期/支部 14, page 355, 名簿(に載せる)/表(にあげる)ing 29 "LinkASheet"
An extra 今後 削除する is 要求するd in the URL. Change
sURL = "とじ込み/提出する://C:/My%20Documents/CH15/実験(する).sxc"
to
sURL = "とじ込み/提出する:///C:/My%20Documents/CH15/実験(する).sxc"
一時期/支部 14, page 356, 名簿(に載せる)/表(にあげる)ing 29
This 名簿(に載せる)/表(にあげる)ing 要求するs a line break. It starts on page 355 and ends on page 356. The last line of the 名簿(に載せる)/表(にあげる)ing reads as follows:
oSheet.link(sURL, "Sheet1", "", "", com.sun.星/主役にする.sheet.SheetLinkMode.NORMAL) End Sub
This should read as follows:
oSheet.link(sURL, "Sheet1", "", "", com.sun.星/主役にする.sheet.SheetLinkMode.NORMAL)
End Sub
This is a formatting error. The source code 利用できる from the publisher does not 含む/封じ込める this error.
|