mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2026-04-04 15:27:34 +00:00
Windows下集成OpenOffice
This commit is contained in:
@@ -66,13 +66,16 @@ public class OfficeUtils {
|
|||||||
}
|
}
|
||||||
if (PlatformUtils.isWindows()) {
|
if (PlatformUtils.isWindows()) {
|
||||||
// %ProgramFiles(x86)% on 64-bit machines; %ProgramFiles% on 32-bit ones
|
// %ProgramFiles(x86)% on 64-bit machines; %ProgramFiles% on 32-bit ones
|
||||||
|
String separator = File.separator;
|
||||||
|
String officeHome = OfficeUtils.getHomePath() + separator + "office";
|
||||||
String programFiles = System.getenv("ProgramFiles(x86)");
|
String programFiles = System.getenv("ProgramFiles(x86)");
|
||||||
if (programFiles == null) {
|
if (programFiles == null) {
|
||||||
programFiles = System.getenv("ProgramFiles");
|
programFiles = System.getenv("ProgramFiles");
|
||||||
}
|
}
|
||||||
return findOfficeHome(
|
return findOfficeHome(
|
||||||
programFiles + File.separator + "OpenOffice 4",
|
programFiles + File.separator + "OpenOffice 4",
|
||||||
programFiles + File.separator + "LibreOffice 4"
|
programFiles + File.separator + "LibreOffice 4",
|
||||||
|
officeHome + File.separator + "OpenOffice 4"
|
||||||
);
|
);
|
||||||
} else if (PlatformUtils.isMac()) {
|
} else if (PlatformUtils.isMac()) {
|
||||||
return findOfficeHome(
|
return findOfficeHome(
|
||||||
@@ -108,4 +111,18 @@ public class OfficeUtils {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String getHomePath() {
|
||||||
|
String userDir = System.getenv("KKFILEVIEW_BIN_FOLDER");
|
||||||
|
if (userDir == null) {
|
||||||
|
userDir = System.getProperty("user.dir");
|
||||||
|
}
|
||||||
|
if (userDir.endsWith("bin")) {
|
||||||
|
userDir = userDir.substring(0, userDir.length() - 4);
|
||||||
|
} else {
|
||||||
|
String separator = File.separator;
|
||||||
|
userDir = userDir + separator + "jodconverter-web" + separator + "src" + separator + "main";
|
||||||
|
}
|
||||||
|
return userDir;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -164,6 +164,12 @@
|
|||||||
</includes>
|
</includes>
|
||||||
<filtering>true</filtering>
|
<filtering>true</filtering>
|
||||||
</resource>
|
</resource>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/conf</directory>
|
||||||
|
<excludes>
|
||||||
|
<exclude></exclude>
|
||||||
|
</excludes>
|
||||||
|
</resource>
|
||||||
</resources>
|
</resources>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
|||||||
@@ -15,8 +15,8 @@ spring.freemarker.suffix = .ftl
|
|||||||
##资源映射路径
|
##资源映射路径
|
||||||
file.dir = D:\\kkFileview\\
|
file.dir = D:\\kkFileview\\
|
||||||
spring.resources.static-locations = classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${file.dir}
|
spring.resources.static-locations = classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,file:${file.dir}
|
||||||
## openoffice home路径
|
##openoffice home路径
|
||||||
office.home = C:\\Program Files (x86)\\OpenOffice 4
|
#office.home = C:\\Program Files (x86)\\OpenOffice 4
|
||||||
server.tomcat.uri-encoding = UTF-8
|
server.tomcat.uri-encoding = UTF-8
|
||||||
#文件上传限制
|
#文件上传限制
|
||||||
spring.http.multipart.max-file-size=100MB
|
spring.http.multipart.max-file-size=100MB
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package cn.keking.config;
|
package cn.keking.config;
|
||||||
|
|
||||||
|
import cn.keking.utils.HomePathUtils;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
@@ -32,24 +33,14 @@ public class ConfigRefreshComponent {
|
|||||||
public void run() {
|
public void run() {
|
||||||
try {
|
try {
|
||||||
Properties properties = new Properties();
|
Properties properties = new Properties();
|
||||||
String userDir = System.getenv("KKFILEVIEW_BIN_FOLDER");
|
String text;
|
||||||
if (userDir == null) {
|
String media;
|
||||||
System.getProperty("user.dir");
|
String convertedFileCharset;
|
||||||
}
|
String[] textArray ;
|
||||||
if (userDir.endsWith("bin")) {
|
String[] mediaArray;
|
||||||
userDir = userDir.substring(0, userDir.length() - 4);
|
String homePath = HomePathUtils.getHomePath();
|
||||||
}
|
|
||||||
String separator = java.io.File.separator;
|
String separator = java.io.File.separator;
|
||||||
String configFilePath = userDir + separator + "conf" + separator + "application.properties";
|
String configFilePath = homePath + separator + "conf" + separator + "application.properties";
|
||||||
File file = new File(configFilePath);
|
|
||||||
if (!file.exists()) {
|
|
||||||
configFilePath = userDir + separator + "jodconverter-web" + separator + "src" + separator + "main" + separator + "conf" + separator + "application.properties";
|
|
||||||
}
|
|
||||||
String text = null;
|
|
||||||
String media = null;
|
|
||||||
String convertedFileCharset = null;
|
|
||||||
String[] textArray = {};
|
|
||||||
String[] mediaArray = {};
|
|
||||||
while (true) {
|
while (true) {
|
||||||
BufferedReader bufferedReader = new BufferedReader(new FileReader(configFilePath));
|
BufferedReader bufferedReader = new BufferedReader(new FileReader(configFilePath));
|
||||||
properties.load(bufferedReader);
|
properties.load(bufferedReader);
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import cn.keking.extend.ControlDocumentFormatRegistry;
|
|||||||
import org.artofsolving.jodconverter.OfficeDocumentConverter;
|
import org.artofsolving.jodconverter.OfficeDocumentConverter;
|
||||||
import org.artofsolving.jodconverter.office.DefaultOfficeManagerConfiguration;
|
import org.artofsolving.jodconverter.office.DefaultOfficeManagerConfiguration;
|
||||||
import org.artofsolving.jodconverter.office.OfficeManager;
|
import org.artofsolving.jodconverter.office.OfficeManager;
|
||||||
|
import org.artofsolving.jodconverter.office.OfficeUtils;
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.stereotype.Component;
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
@@ -23,8 +24,8 @@ import java.util.Map;
|
|||||||
@Component
|
@Component
|
||||||
public class ConverterUtils {
|
public class ConverterUtils {
|
||||||
|
|
||||||
@Value("${office.home}")
|
// @Value("${office.home}")
|
||||||
String officeHome;
|
// String officeHome;
|
||||||
// OpenOfficeConnection connection;
|
// OpenOfficeConnection connection;
|
||||||
OfficeManager officeManager;
|
OfficeManager officeManager;
|
||||||
|
|
||||||
@@ -32,6 +33,7 @@ public class ConverterUtils {
|
|||||||
public void initOfficeManager() {
|
public void initOfficeManager() {
|
||||||
//// connection = new SocketOpenOfficeConnection(host,8100);
|
//// connection = new SocketOpenOfficeConnection(host,8100);
|
||||||
//// connection.connect();
|
//// connection.connect();
|
||||||
|
String officeHome = OfficeUtils.getDefaultOfficeHome().getAbsolutePath();
|
||||||
DefaultOfficeManagerConfiguration configuration = new DefaultOfficeManagerConfiguration();
|
DefaultOfficeManagerConfiguration configuration = new DefaultOfficeManagerConfiguration();
|
||||||
configuration.setOfficeHome(officeHome);
|
configuration.setOfficeHome(officeHome);
|
||||||
configuration.setPortNumber(8100);
|
configuration.setPortNumber(8100);
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
package cn.keking.utils;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @auther: chenjh
|
||||||
|
* @time: 2019/4/15 9:11
|
||||||
|
* @description
|
||||||
|
*/
|
||||||
|
public class HomePathUtils {
|
||||||
|
|
||||||
|
public static String getHomePath() {
|
||||||
|
String userDir = System.getenv("KKFILEVIEW_BIN_FOLDER");
|
||||||
|
if (userDir == null) {
|
||||||
|
userDir = System.getProperty("user.dir");
|
||||||
|
}
|
||||||
|
if (userDir.endsWith("bin")) {
|
||||||
|
userDir = userDir.substring(0, userDir.length() - 4);
|
||||||
|
} else {
|
||||||
|
String separator = File.separator;
|
||||||
|
userDir = userDir + separator + "jodconverter-web" + separator + "src" + separator + "main";
|
||||||
|
}
|
||||||
|
return userDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
<!--***********************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
***********************************************************-->
|
||||||
|
<xsl:stylesheet version="1.0" encoding="UTF-8"
|
||||||
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
|
xmlns:office="http://openoffice.org/2000/office"
|
||||||
|
xmlns:style="http://openoffice.org/2000/style"
|
||||||
|
xmlns:table="http://openoffice.org/2000/table"
|
||||||
|
xmlns:draw="http://openoffice.org/2000/drawing"
|
||||||
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:meta="http://openoffice.org/2000/meta"
|
||||||
|
xmlns:number="http://openoffice.org/2000/datastyle"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:chart="http://openoffice.org/2000/chart"
|
||||||
|
xmlns:help="http://openoffice.org/2000/help"
|
||||||
|
xmlns:index="http://sun.com/2000/XMLSearch"
|
||||||
|
xmlns:text="http://openoffice.org/2000/text">
|
||||||
|
|
||||||
|
<xsl:param name="Language" select="'en-US'"/>
|
||||||
|
<xsl:output method="text" encoding="UTF-8"/>
|
||||||
|
|
||||||
|
<xsl:template match="/">
|
||||||
|
<xsl:apply-templates select="//title" mode="include"/>
|
||||||
|
<xsl:apply-templates select="//paragraph[@role='heading']" mode="include"/>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="*" mode="include">
|
||||||
|
<xsl:value-of select="."/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="*"/>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
|
|
||||||
@@ -0,0 +1,124 @@
|
|||||||
|
<!--***********************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
***********************************************************-->
|
||||||
|
<xsl:stylesheet version="1.0" encoding="UTF-8"
|
||||||
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||||||
|
xmlns:office="http://openoffice.org/2000/office"
|
||||||
|
xmlns:style="http://openoffice.org/2000/style"
|
||||||
|
xmlns:table="http://openoffice.org/2000/table"
|
||||||
|
xmlns:draw="http://openoffice.org/2000/drawing"
|
||||||
|
xmlns:fo="http://www.w3.org/1999/XSL/Format"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:meta="http://openoffice.org/2000/meta"
|
||||||
|
xmlns:number="http://openoffice.org/2000/datastyle"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:chart="http://openoffice.org/2000/chart"
|
||||||
|
xmlns:help="http://openoffice.org/2000/help"
|
||||||
|
xmlns:index="http://sun.com/2000/XMLSearch"
|
||||||
|
xmlns:text="http://openoffice.org/2000/text">
|
||||||
|
|
||||||
|
<xsl:param name="Language" select="'en-US'"/>
|
||||||
|
<xsl:output method="text" encoding="UTF-8"/>
|
||||||
|
|
||||||
|
<xsl:template match="helpdocument|body">
|
||||||
|
<xsl:choose>
|
||||||
|
<xsl:when test="meta/topic[@indexer='exclude']"/>
|
||||||
|
<xsl:otherwise>
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
</xsl:otherwise>
|
||||||
|
</xsl:choose>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="title">
|
||||||
|
<xsl:value-of select="."/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="table">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="tablecell">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="tablerow">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="list">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="listitem">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="item">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="emph">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="paragraph">
|
||||||
|
<xsl:value-of select="."/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="section">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="bookmark">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="bookmark_value">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="link">
|
||||||
|
<xsl:apply-templates/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="ahelp[@visibility='visible']">
|
||||||
|
<xsl:value-of select="."/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="*"/>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,94 @@
|
|||||||
|
/**************************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
*************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ OPENOFFICE.ORG 2.0 HELP +
|
||||||
|
+ DEFAULT STYLESHEET +
|
||||||
|
+ CHINESE SIMPL +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ LAST CHANGES: 24-MAR-2005 +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",SimSun,FZSongYi,FZShuSong,NSimSun,"Andale Sans UI","Arial Unicode MS","Lucida Sans Unicode",Song; }
|
||||||
|
|
||||||
|
.code, .codeintable, .example, .exampleintable, .literal, .literalintable, .path, .pathintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",Cumberland,Courier New,Courier,"Lucida Sans Typewriter","Lucida Typewriter",Monaco,Monospaced; margin-top: 1pt; margin-bottom: 1pt;}
|
||||||
|
|
||||||
|
.acronym
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ font-weight: bold; margin-top:20pt; border-top: 1px solid black;}
|
||||||
|
|
||||||
|
.emph, .menuitem, .keycode
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.tablehead, .tableheadintable
|
||||||
|
{ font-weight: bold; margin-top: 0px;}
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{ font-weight: bold; border: 1px solid #999999; background: #FFFFFF; padding: 3px;}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6
|
||||||
|
{ margin-bottom: 5pt; }
|
||||||
|
|
||||||
|
p, td
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ font-size: 18pt; border-bottom: 1px solid black; padding-bottom: 6px; margin-bottom: 6px;}
|
||||||
|
|
||||||
|
h2
|
||||||
|
{ font-size: 14pt; }
|
||||||
|
|
||||||
|
h3
|
||||||
|
{ font-size: 12pt; }
|
||||||
|
|
||||||
|
h4, h5, h6
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
.relatedtopics
|
||||||
|
{ font-weight: normal; }
|
||||||
|
|
||||||
|
.relatedbody
|
||||||
|
{ margin-top: 2px; margin-bottom: 2px; margin-left: 5px; }
|
||||||
|
|
||||||
|
.howtoget
|
||||||
|
{ background:#EEEEEE;}
|
||||||
|
|
||||||
|
.howtogetbody
|
||||||
|
{ background:#EEEEEE;}
|
||||||
|
|
||||||
|
.wide
|
||||||
|
{ width: 100%; }
|
||||||
|
|
||||||
|
.topalign
|
||||||
|
{ vertical-align: top; border: 1px;}
|
||||||
|
|
||||||
|
.bug
|
||||||
|
{ color: red; border: 1px solid red;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid black; padding: 3px; display: none;}
|
||||||
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
|
||||||
|
<!--***********************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
***********************************************************-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<helpdocument version="1.0">
|
||||||
|
<meta>
|
||||||
|
<topic id="textshared05err_htmlxml" indexer="exclude" status="PUBLISH">
|
||||||
|
<title id="tit" xml-lang="zh-CN">未找到帮助页面</title>
|
||||||
|
<filename>/text/shared/05/err_html.xhp</filename>
|
||||||
|
</topic>
|
||||||
|
<history>
|
||||||
|
<created date="2003-10-31T00:00:00">Sun Microsystems, Inc.</created>
|
||||||
|
<lastedited date="2005-01-11T11:07:13">converted from old format - fpe
|
||||||
|
FPE: Updated</lastedited>
|
||||||
|
</history>
|
||||||
|
</meta>
|
||||||
|
<body>
|
||||||
|
<paragraph role="heading" id="hd_id3146957" xml-lang="zh-CN" level="1" l10n="U" oldref="1">帮助页面未能找到。</paragraph>
|
||||||
|
<paragraph role="paragraph" id="par_id3147088" xml-lang="zh-CN" l10n="U" oldref="2">很遗憾,您所选择的帮助页面未能找到。以下数据可能对界定错误有所帮助:</paragraph>
|
||||||
|
<paragraph role="paragraph" id="par_id3143268" xml-lang="zh-CN" l10n="U" oldref="3">帮助 ID:<emph><help-id-missing/></emph></paragraph>
|
||||||
|
<paragraph role="paragraph" id="par_idN10681" xml-lang="zh-CN" l10n="NEW">可以使用安装应用程序来安装缺少的帮助模块。</paragraph>
|
||||||
|
<paragraph role="paragraph" id="par_id3150541" xml-lang="zh-CN" l10n="U" oldref="16">单击<image id="img_id3148946" src="res/sc06301.png" width="0.222inch" height="0.222inch"><alt id="alt_id3148946">图标</alt></image><emph>上一步</emph>可返回上一页面。</paragraph>
|
||||||
|
</body>
|
||||||
|
</helpdocument>
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
/**************************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
*************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ OPENOFFICE.ORG 2.0 HELP +
|
||||||
|
+ HIGH CONTRAST #1 STYLESHEET +
|
||||||
|
+ CHINESE SIMPL +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ LAST CHANGES: 24-MAR-2005 +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",SimSun,FZSongYi,FZShuSong,NSimSun,"Andale Sans UI","Arial Unicode MS","Lucida Sans Unicode",Song; }
|
||||||
|
|
||||||
|
.code, .codeintable, .example, .exampleintable, .literal, .literalintable, .path, .pathintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",Cumberland,Courier New,Courier,"Lucida Sans Typewriter","Lucida Typewriter",Monaco,Monospaced; margin-top: 1pt; margin-bottom: 1pt;}
|
||||||
|
|
||||||
|
.acronym
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ font-weight: bold; margin-top:20pt; border-top: 1px solid black;}
|
||||||
|
|
||||||
|
.emph, .menuitem, .keycode
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.tablehead, .tableheadintable
|
||||||
|
{ font-weight: bold; margin-top: 0px;}
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{ font-weight: bold; padding: 3px;}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6
|
||||||
|
{ margin-bottom: 5pt; }
|
||||||
|
|
||||||
|
p, td
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ font-size: 18pt; border-bottom: 1px solid black; padding-bottom: 6px; margin-bottom: 6px;}
|
||||||
|
|
||||||
|
h2
|
||||||
|
{ font-size: 14pt; }
|
||||||
|
|
||||||
|
h3
|
||||||
|
{ font-size: 12pt; }
|
||||||
|
|
||||||
|
h4, h5, h6
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
.relatedtopics
|
||||||
|
{ font-weight: normal; }
|
||||||
|
|
||||||
|
.relatedbody
|
||||||
|
{ margin-top: 2px; margin-bottom: 2px; margin-left: 5px; }
|
||||||
|
|
||||||
|
.wide
|
||||||
|
{ width: 100%; }
|
||||||
|
|
||||||
|
.topalign
|
||||||
|
{ vertical-align: top; border: 1px;}
|
||||||
|
|
||||||
|
.bug
|
||||||
|
{ color: red; border: 1px solid red;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid black; padding: 3px; display: none;}
|
||||||
|
|
||||||
|
/* HIGH CONTRAST SPECIFIC SETTINGS */
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ background: #000000; color: #FFFF00;}
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ border-top: 1px solid #FFFF00; }
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{border: 1px solid #EFEFEF; background: #000000;}
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ border-bottom: 1px solid #FFFF00; ]
|
||||||
|
|
||||||
|
.howtoget
|
||||||
|
{ background:#000000;}
|
||||||
|
|
||||||
|
.howtogetbody
|
||||||
|
{ background:#000000;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid red; padding: 3px; display: none;}
|
||||||
|
|
||||||
|
a
|
||||||
|
{ color: #FFFF00; }
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
/**************************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
*************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ OPENOFFICE.ORG 2.0 HELP +
|
||||||
|
+ HIGH CONTRAST #2 STYLESHEET +
|
||||||
|
+ CHINESE SIMPL +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ LAST CHANGES: 24-MAR-2005 +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",SimSun,FZSongYi,FZShuSong,NSimSun,"Andale Sans UI","Arial Unicode MS","Lucida Sans Unicode",Song; }
|
||||||
|
|
||||||
|
.code, .codeintable, .example, .exampleintable, .literal, .literalintable, .path, .pathintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",Cumberland,Courier New,Courier,"Lucida Sans Typewriter","Lucida Typewriter",Monaco,Monospaced; margin-top: 1pt; margin-bottom: 1pt;}
|
||||||
|
|
||||||
|
.acronym
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ font-weight: bold; margin-top:20pt; border-top: 1px solid black;}
|
||||||
|
|
||||||
|
.emph, .menuitem, .keycode
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.tablehead, .tableheadintable
|
||||||
|
{ font-weight: bold; margin-top: 0px;}
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{ font-weight: bold; padding: 3px;}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6
|
||||||
|
{ margin-bottom: 5pt; }
|
||||||
|
|
||||||
|
p, td
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ font-size: 18pt; border-bottom: 1px solid black; padding-bottom: 6px; margin-bottom: 6px;}
|
||||||
|
|
||||||
|
h2
|
||||||
|
{ font-size: 14pt; }
|
||||||
|
|
||||||
|
h3
|
||||||
|
{ font-size: 12pt; }
|
||||||
|
|
||||||
|
h4, h5, h6
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
.relatedtopics
|
||||||
|
{ font-weight: normal; }
|
||||||
|
|
||||||
|
.relatedbody
|
||||||
|
{ margin-top: 2px; margin-bottom: 2px; margin-left: 5px; }
|
||||||
|
|
||||||
|
.wide
|
||||||
|
{ width: 100%; }
|
||||||
|
|
||||||
|
.topalign
|
||||||
|
{ vertical-align: top; border: 1px;}
|
||||||
|
|
||||||
|
.bug
|
||||||
|
{ color: red; border: 1px solid red;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid black; padding: 3px; display: none;}
|
||||||
|
|
||||||
|
/* HIGH CONTRAST SPECIFIC SETTINGS */
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ background: #000000; color: #00FF00;}
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ border-top: 1px solid #00FF00; }
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{border: 1px solid #EFEFEF; background: #000000;}
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ border-bottom: 1px solid #00FF00; ]
|
||||||
|
|
||||||
|
.howtoget
|
||||||
|
{ background:#000000;}
|
||||||
|
|
||||||
|
.howtogetbody
|
||||||
|
{ background:#000000;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid red; padding: 3px; display: none;}
|
||||||
|
|
||||||
|
a
|
||||||
|
{ color: #00FF00; }
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
/**************************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
*************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ OPENOFFICE.ORG 2.0 HELP +
|
||||||
|
+ HIGH CONTRAST BLACK STYLESHEET +
|
||||||
|
+ CHINESE SIMPL +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ LAST CHANGES: 24-MAR-2005 +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",SimSun,FZSongYi,FZShuSong,NSimSun,"Andale Sans UI","Arial Unicode MS","Lucida Sans Unicode",Song; }
|
||||||
|
|
||||||
|
.code, .codeintable, .example, .exampleintable, .literal, .literalintable, .path, .pathintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",Cumberland,Courier New,Courier,"Lucida Sans Typewriter","Lucida Typewriter",Monaco,Monospaced; margin-top: 1pt; margin-bottom: 1pt;}
|
||||||
|
|
||||||
|
.acronym
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ font-weight: bold; margin-top:20pt; border-top: 1px solid black;}
|
||||||
|
|
||||||
|
.emph, .menuitem, .keycode
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.tablehead, .tableheadintable
|
||||||
|
{ font-weight: bold; margin-top: 0px;}
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{ font-weight: bold; padding: 3px;}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6
|
||||||
|
{ margin-bottom: 5pt; }
|
||||||
|
|
||||||
|
p, td
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ font-size: 18pt; border-bottom: 1px solid black; padding-bottom: 6px; margin-bottom: 6px;}
|
||||||
|
|
||||||
|
h2
|
||||||
|
{ font-size: 14pt; }
|
||||||
|
|
||||||
|
h3
|
||||||
|
{ font-size: 12pt; }
|
||||||
|
|
||||||
|
h4, h5, h6
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
.relatedtopics
|
||||||
|
{ font-weight: normal; }
|
||||||
|
|
||||||
|
.relatedbody
|
||||||
|
{ margin-top: 2px; margin-bottom: 2px; margin-left: 5px; }
|
||||||
|
|
||||||
|
.wide
|
||||||
|
{ width: 100%; }
|
||||||
|
|
||||||
|
.topalign
|
||||||
|
{ vertical-align: top; border: 1px;}
|
||||||
|
|
||||||
|
.bug
|
||||||
|
{ color: red; border: 1px solid red;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid black; padding: 3px; display: none;}
|
||||||
|
|
||||||
|
/* HIGH CONTRAST SPECIFIC SETTINGS */
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ background: #000000; color: #FFFFFF;}
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ border-top: 1px solid #FFFFFF; }
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{border: 1px solid #FFFFFF; background: #000000;}
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ border-bottom: 1px solid #FFFFFF; ]
|
||||||
|
|
||||||
|
.howtoget
|
||||||
|
{ background:#000000;}
|
||||||
|
|
||||||
|
.howtogetbody
|
||||||
|
{ background:#000000;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid red; padding: 3px; display: none;}
|
||||||
|
|
||||||
|
a
|
||||||
|
{ color: #FFFFFF; }
|
||||||
@@ -0,0 +1,114 @@
|
|||||||
|
/**************************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
*************************************************************/
|
||||||
|
|
||||||
|
/*
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ OPENOFFICE.ORG 2.0 HELP +
|
||||||
|
+ HIGH CONTRAST WHITE STYLESHEET +
|
||||||
|
+ CHINESE SIMPL +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
+ LAST CHANGES: 24-MAR-2005 +
|
||||||
|
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",SimSun,FZSongYi,FZShuSong,NSimSun,"Andale Sans UI","Arial Unicode MS","Lucida Sans Unicode",Song; }
|
||||||
|
|
||||||
|
.code, .codeintable, .example, .exampleintable, .literal, .literalintable, .path, .pathintable
|
||||||
|
{ font-family: 方正宋体,"MSung Light SC",Cumberland,Courier New,Courier,"Lucida Sans Typewriter","Lucida Typewriter",Monaco,Monospaced; margin-top: 1pt; margin-bottom: 1pt;}
|
||||||
|
|
||||||
|
.acronym
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ font-weight: bold; margin-top:20pt; border-top: 1px solid black;}
|
||||||
|
|
||||||
|
.emph, .menuitem, .keycode
|
||||||
|
{ font-weight: bold; }
|
||||||
|
|
||||||
|
.tablehead, .tableheadintable
|
||||||
|
{ font-weight: bold; margin-top: 0px;}
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{ font-weight: bold; padding: 3px;}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6
|
||||||
|
{ margin-bottom: 5pt; }
|
||||||
|
|
||||||
|
p, td
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ font-size: 18pt; border-bottom: 1px solid black; padding-bottom: 6px; margin-bottom: 6px;}
|
||||||
|
|
||||||
|
h2
|
||||||
|
{ font-size: 14pt; }
|
||||||
|
|
||||||
|
h3
|
||||||
|
{ font-size: 12pt; }
|
||||||
|
|
||||||
|
h4, h5, h6
|
||||||
|
{ font-size: 10pt; }
|
||||||
|
|
||||||
|
.relatedtopics
|
||||||
|
{ font-weight: normal; }
|
||||||
|
|
||||||
|
.relatedbody
|
||||||
|
{ margin-top: 2px; margin-bottom: 2px; margin-left: 5px; }
|
||||||
|
|
||||||
|
.wide
|
||||||
|
{ width: 100%; }
|
||||||
|
|
||||||
|
.topalign
|
||||||
|
{ vertical-align: top; border: 1px;}
|
||||||
|
|
||||||
|
.bug
|
||||||
|
{ color: red; border: 1px solid red;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid black; padding: 3px; display: none;}
|
||||||
|
|
||||||
|
/* HIGH CONTRAST SPECIFIC SETTINGS */
|
||||||
|
|
||||||
|
body, p, h1, h2, h3, h4, h5, h6, .listitem, .listitemintable, .tablecontent, .tablecontentintable
|
||||||
|
{ background: #FFFFFF; color: #000000;}
|
||||||
|
|
||||||
|
.related
|
||||||
|
{ border-top: 1px solid #000000; }
|
||||||
|
|
||||||
|
.howtogetheader
|
||||||
|
{border: 1px solid #000000; background: #FFFFFF;}
|
||||||
|
|
||||||
|
h1
|
||||||
|
{ border-bottom: 1px solid #000000; ]
|
||||||
|
|
||||||
|
.howtoget
|
||||||
|
{ background:#FFFFFF;}
|
||||||
|
|
||||||
|
.howtogetbody
|
||||||
|
{ background:#FFFFFF;}
|
||||||
|
|
||||||
|
.debug
|
||||||
|
{ border: 1px solid red; padding: 3px; display: none;}
|
||||||
|
|
||||||
|
a
|
||||||
|
{ color: #000000; }
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
###############################################################
|
||||||
|
#
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing,
|
||||||
|
# software distributed under the License is distributed on an
|
||||||
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
# KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
#
|
||||||
|
###############################################################
|
||||||
|
|
||||||
|
|
||||||
|
Title=%PRODUCTNAME Basic
|
||||||
|
|
||||||
|
Language=zh-CN
|
||||||
|
Order=7
|
||||||
|
Start=text%2Fsbasic%2Fshared%2Fmain0601.xhp
|
||||||
|
Heading=headingheading
|
||||||
|
Program=BASIC
|
||||||
|
07.07.04 00:00:00
|
||||||
13052
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/sbasic.db
Normal file
13052
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/sbasic.db
Normal file
File diff suppressed because it is too large
Load Diff
4185
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/sbasic.ht
Normal file
4185
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/sbasic.ht
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2182
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/sbasic.key
Normal file
2182
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/sbasic.key
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,265 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--***********************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
***********************************************************-->
|
||||||
|
<tree_view version="24-Aug-2004">
|
||||||
|
<help_section application="sbasic" id="07" title="宏和编程">
|
||||||
|
<node id="0701" title="一般信息和用户界面的使用">
|
||||||
|
<topic id="sbasic/text/sbasic/shared/main0601.xhp">%PRODUCTNAME Basic 帮助</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01000000.xhp">使用 %PRODUCTNAME Basic 编程</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/00000002.xhp">%PRODUCTNAME Basic 词汇表</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01010210.xhp">Basics</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01020000.xhp">语法</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01050000.xhp">%PRODUCTNAME Basic IDE</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01030100.xhp">IDE 概况</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01030200.xhp">Basic 编辑器</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01050100.xhp">监视窗口</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/main0211.xhp">宏工具栏</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/05060700.xhp">宏</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0702" title="命令引用">
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01020300.xhp">使用过程和函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01020500.xhp">程序库、模块和对话框</topic>
|
||||||
|
<node id="070202" title="运行时函数、语句和运算符">
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010000.xhp">屏幕 I/O 函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020000.xhp">文件 I/O 函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030000.xhp">日期和时间函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03050000.xhp">错误处理函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03060000.xhp">逻辑运算符</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03070000.xhp">数学运算符</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080000.xhp">数字函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090000.xhp">控制程序的执行</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03100000.xhp">变量</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03110000.xhp">比较运算符</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120000.xhp">字符串</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03130000.xhp">其他命令</topic>
|
||||||
|
</node>
|
||||||
|
<node id="070201" title="函数、语句和运算符的字母顺序列表">
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080601.xhp">Abs 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03060100.xhp">AND 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03104200.xhp">Array 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120101.xhp">Asc 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080101.xhp">Atn 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03130100.xhp">Beep 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010301.xhp">Blue 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03100100.xhp">CBool 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120105.xhp">CByte 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030108.xhp">CDateFromIso 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030107.xhp">CdateToIso 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03100300.xhp">CDate 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03100400.xhp">CDbl 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03100500.xhp">CInt 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03100600.xhp">CLng 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03100900.xhp">CSng 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03101000.xhp">CStr 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090401.xhp">Call 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020401.xhp">ChDir 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020402.xhp">ChDrive 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090402.xhp">Choose 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120102.xhp">Chr 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020101.xhp">Close 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03110100.xhp">比较运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03100700.xhp">Const 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120313.xhp">ConvertFromURL 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120312.xhp">ConvertToURL 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080102.xhp">Cos 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03131800.xhp">CreateUnoDialog 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03132000.xhp">CreateUnoListener 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03131600.xhp">CreateUnoService 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03131500.xhp">CreateUnoStruct 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020403.xhp">CurDir 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030101.xhp">DateSerial 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030102.xhp">DateValue 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030301.xhp">Date 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030103.xhp">Day 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090403.xhp">Declare 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03101100.xhp">DefBool 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03101300.xhp">DefDate 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03101400.xhp">DefDbl 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03101500.xhp">DefInt 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03101600.xhp">DefLng 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03101700.xhp">DefObj 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102000.xhp">DefVar 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03104300.xhp">DimArray 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102100.xhp">Dim 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020404.xhp">Dir 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090201.xhp">Do...Loop 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03110100.xhp">比较运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090404.xhp">End 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03130800.xhp">Environ 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020301.xhp">Eof 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03104600.xhp">EqualUnoObjects 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03060200.xhp">Eqv 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03050100.xhp">Erl 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03050200.xhp">Err 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03050300.xhp">Error 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03050000.xhp">错误处理函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090412.xhp">Exit 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080201.xhp">Exp 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020405.xhp">FileAttr 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020406.xhp">FileCopy 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020407.xhp">FileDateTime 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020415.xhp">FileExists 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020408.xhp">FileLen 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103800.xhp">FindObject 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103900.xhp">FindPropertyObject 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080501.xhp">Fix 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090202.xhp">For...Next 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120301.xhp">Format 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020102.xhp">FreeFile 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090405.xhp">FreeLibrary 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090406.xhp">Function 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090400.xhp">其他语句</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080300.xhp">生成随机数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020409.xhp">GetAttr 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03131700.xhp">GetProcessServiceManager 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03131000.xhp">GetSolarVersion 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03130700.xhp">GetSystemTicks 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020201.xhp">Get 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03131900.xhp">GlobalScope [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090301.xhp">GoSub...Return 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090302.xhp">GoTo 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010302.xhp">Green 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03104400.xhp">HasUnoInterfaces 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080801.xhp">Hex 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030201.xhp">Hour 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090103.xhp">IIf 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090101.xhp">If...Then...Else 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03060300.xhp">隐含运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120401.xhp">InStr 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010201.xhp">InputBox 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020202.xhp">Input# 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080502.xhp">Int 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102200.xhp">IsArray 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102300.xhp">IsDate 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102400.xhp">IsEmpty 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03104000.xhp">IsMissing 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102600.xhp">IsNull 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102700.xhp">IsNumeric 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102800.xhp">IsObject 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03104500.xhp">IsUnoStruct 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120315.xhp">Join 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020410.xhp">Kill 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102900.xhp">LBound 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120302.xhp">LCase 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120304.xhp">LSet 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120305.xhp">LTrim 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120303.xhp">Left 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120402.xhp">Len 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103100.xhp">Let 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020203.xhp">Line Input # 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020302.xhp">Loc 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020303.xhp">Lof 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080202.xhp">Log 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120306.xhp">Mid 函数、Mid 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030202.xhp">Minute 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020411.xhp">MkDir 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03070600.xhp">Mod 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030104.xhp">Month 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010102.xhp">MsgBox 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010101.xhp">MsgBox 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020412.xhp">Name 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03060400.xhp">"Not"运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030203.xhp">Now 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080000.xhp">数字函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080802.xhp">Oct 函数 [运行时间]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03050500.xhp">On Error GoTo ...Resume 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090303.xhp">On...GoSub 语句;On...GoTo 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020103.xhp">Open 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103200.xhp">Option Base 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103300.xhp">Option Explicit 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03104100.xhp">Optional(在函数语句中)[运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03060500.xhp">Or 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010103.xhp">Print 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103400.xhp">Public 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020204.xhp">Put 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010304.xhp">QBColor 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010305.xhp">RGB 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120308.xhp">RSet 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120309.xhp">RTrim 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080301.xhp">Randomize 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03102101.xhp">ReDim 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03010303.xhp">Red 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090407.xhp">Rem 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020104.xhp">Reset 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120307.xhp">Right 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020413.xhp">RmDir 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080302.xhp">Rnd 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030204.xhp">Second 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020304.xhp">Seek 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020305.xhp">Seek 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090102.xhp">Select...Case 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020414.xhp">SetAttr 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103700.xhp">Set 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080701.xhp">Sgn 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03130500.xhp">Shell 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080103.xhp">Sin 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120201.xhp">Space 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120314.xhp">Split 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080401.xhp">Sqr 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080400.xhp">计算平方根</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103500.xhp">Static 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090408.xhp">Stop 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120403.xhp">StrComp 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120103.xhp">Str 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120202.xhp">String 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090409.xhp">Sub 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090410.xhp">Switch 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080104.xhp">Tan 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030205.xhp">TimeSerial 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030206.xhp">TimeValue 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030302.xhp">Time 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030303.xhp">Timer 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03080100.xhp">三角函数</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120311.xhp">Trim 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03131300.xhp">TwipsPerPixelX 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03131400.xhp">TwipsPerPixelY 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103600.xhp">TypeName 函数; VarType 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03103000.xhp">UBound 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120310.xhp">UCase 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03120104.xhp">Val 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03130600.xhp">Wait 语句 [运行时间]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030105.xhp">WeekDay 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090203.xhp">While...Wend 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03090411.xhp">With 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03020205.xhp">Write 语句 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03060600.xhp">Xor 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03030106.xhp">Year 函数 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03070100.xhp">"-" 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03070200.xhp">"*" 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03070300.xhp">"+" 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03070400.xhp">"/" 运算符 [运行时]</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/03070500.xhp">"^" 运算符 [运行时]</topic>
|
||||||
|
</node>
|
||||||
|
</node>
|
||||||
|
<node id="0703" title="指南">
|
||||||
|
<topic id="sbasic/text/sbasic/guide/control_properties.xhp">修改对话框编辑器中控件的属性</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/guide/insert_control.xhp">在对话框编辑器中创建控件</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/guide/sample_code.xhp">对话框编辑器中控件的编程示例</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/guide/show_dialog.xhp">通过程序代码打开对话框</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/guide/create_dialog.xhp">创建 Basic 对话框</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01030400.xhp">管理库和模块</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01020100.xhp">使用变量</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01020200.xhp">使用对象</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01030300.xhp">调试 Basic 程序</topic>
|
||||||
|
<topic id="sbasic/text/sbasic/shared/01040000.xhp">事件驱动的宏</topic>
|
||||||
|
</node>
|
||||||
|
</help_section>
|
||||||
|
</tree_view>
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
###############################################################
|
||||||
|
#
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing,
|
||||||
|
# software distributed under the License is distributed on an
|
||||||
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
# KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
#
|
||||||
|
###############################################################
|
||||||
|
|
||||||
|
|
||||||
|
Title=%PRODUCTNAME Calc
|
||||||
|
|
||||||
|
Language=zh-CN
|
||||||
|
Order=3
|
||||||
|
Start=text%2Fscalc%2Fmain0000.xhp
|
||||||
|
Heading=headingheading
|
||||||
|
Program=CALC
|
||||||
|
07.07.04 00:00:00
|
||||||
14554
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/scalc.db
Normal file
14554
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/scalc.db
Normal file
File diff suppressed because it is too large
Load Diff
5370
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/scalc.ht
Normal file
5370
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/scalc.ht
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3312
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/scalc.key
Normal file
3312
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/scalc.key
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,190 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--***********************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
***********************************************************-->
|
||||||
|
<tree_view version="24-Aug-2004">
|
||||||
|
<help_section application="scalc" id="08" title="电子表格">
|
||||||
|
<node id="0801" title="一般信息和用户界面的使用">
|
||||||
|
<topic id="scalc/text/scalc/main0000.xhp">欢迎使用 %PRODUCTNAME Calc 帮助</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0503.xhp">%PRODUCTNAME Calc 功能</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/keyboard.xhp">快捷键(%PRODUCTNAME Calc 辅助功能)</topic>
|
||||||
|
<topic id="scalc/text/scalc/04/01020000.xhp">电子表格的快捷键</topic>
|
||||||
|
<topic id="scalc/text/scalc/05/02140000.xhp">%PRODUCTNAME Calc 中的错误代码</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060112.xhp">%PRODUCTNAME Calc 中用于编程的加载宏</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/main.xhp">%PRODUCTNAME Calc 使用说明</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0802" title="命令和菜单引用">
|
||||||
|
<node id="080201" title="菜单">
|
||||||
|
<topic id="scalc/text/scalc/main0100.xhp">菜单</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0101.xhp">文件</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0102.xhp">编辑</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0103.xhp">视图</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0104.xhp">插入</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0105.xhp">格式</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0106.xhp">工具</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0107.xhp">窗口</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0112.xhp">数据</topic>
|
||||||
|
</node>
|
||||||
|
<node id="080202" title="工具栏">
|
||||||
|
<topic id="scalc/text/scalc/main0200.xhp">工具栏</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0202.xhp">格式栏</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0203.xhp">绘图对象属性栏</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0205.xhp">文字格式栏</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0206.xhp">公式栏</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0208.xhp">状态栏</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0210.xhp">打印预览栏</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0214.xhp">图片栏</topic>
|
||||||
|
<topic id="scalc/text/scalc/main0218.xhp">工具栏</topic>
|
||||||
|
<topic id="shared/text/shared/main0201.xhp">标准栏</topic>
|
||||||
|
<topic id="shared/text/shared/main0209.xhp">超链接地址栏</topic>
|
||||||
|
<topic id="shared/text/shared/main0212.xhp">表格数据栏</topic>
|
||||||
|
<topic id="shared/text/shared/main0213.xhp">窗体导航栏</topic>
|
||||||
|
<topic id="shared/text/shared/main0214.xhp">查询设计栏</topic>
|
||||||
|
<topic id="shared/text/shared/main0226.xhp">窗体设计工具栏</topic>
|
||||||
|
</node>
|
||||||
|
</node>
|
||||||
|
<node id="0803" title="函数类型和运算符">
|
||||||
|
<topic id="scalc/text/scalc/01/04060000.xhp">函数向导</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060100.xhp">函数(按类别)</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060101.xhp">数据库函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060102.xhp">日期和时间函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060103.xhp">财务函数第一部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060119.xhp">财务函数第二部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060118.xhp">金融函数第三部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060104.xhp">信息函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060105.xhp">逻辑函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060106.xhp">数学函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060107.xhp">矩阵函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060108.xhp">统计函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060181.xhp">统计函数第一部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060182.xhp">统计函数第二部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060183.xhp">统计函数第三部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060184.xhp">统计函数第四部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060185.xhp">统计函数第五部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060109.xhp">电子表格函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060110.xhp">文字函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060111.xhp">加载宏函数</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060115.xhp">加载宏函数,分析函数列表第一部分</topic>
|
||||||
|
<topic id="scalc/text/scalc/01/04060116.xhp">加载宏函数,分析函数列表第二部分</topic>
|
||||||
|
|
||||||
|
<topic id="scalc/text/scalc/01/04060199.xhp">%PRODUCTNAME Calc 中的运算符</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/userdefined_function.xhp">自定义函数</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0804" title="加载、保存、导入和导出">
|
||||||
|
<topic id="scalc/text/scalc/guide/webquery.xhp">在表格中插入外部数据 (WebQuery)</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/html_doc.xhp">将工作表以 HTML 格式保存和打开</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/csv_formula.xhp">导入和导出文本文件</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0805" title="格式化">
|
||||||
|
<topic id="scalc/text/scalc/guide/text_rotate.xhp">旋转文字</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/text_wrap.xhp">写入多行文字</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/text_numbers.xhp">将数字格式化为文本</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/super_subscript.xhp">文字上标/下标</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/row_height.xhp">改变行高或列宽</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/cellstyle_conditional.xhp">应用条件格式</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/cellstyle_minusvalue.xhp">突出显示负数</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/cellstyle_by_formula.xhp">根据公式指定的格式</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/integer_leading_zero.xhp">输入带前置零的数字</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/format_table.xhp">格式化电子表格</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/format_value.xhp">格式化带小数的数字</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/value_with_name.xhp">命名单元格</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/table_rotate.xhp">旋转表格(转置)</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/rename_table.xhp">重命名工作表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/year2000.xhp">19xx/20xx 年</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/rounding_numbers.xhp">使用四舍五入的数字</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/currency_format.xhp">采用货币格式的单元格</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/autoformat.xhp">对表格使用自动套用格式</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/note_insert.xhp">插入和编辑批注</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/design.xhp">选择工作表主题</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/fraction_enter.xhp">输入分数</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0806" title="筛选和排序">
|
||||||
|
<topic id="scalc/text/scalc/guide/filters.xhp">应用筛选</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/specialfilter.xhp">筛选:应用高级筛选</topic>
|
||||||
|
<!-- removed scalc/text/scalc/guide/standardfilter.xhp -->
|
||||||
|
<topic id="scalc/text/scalc/guide/autofilter.xhp">应用自动筛选</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/sorted_list.xhp">应用排序列表</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0807" title="打印">
|
||||||
|
<topic id="scalc/text/scalc/guide/print_title_row.xhp">在每一页上打印行或列</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/print_landscape.xhp">横向打印工作表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/print_details.xhp">打印工作表详细资料</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/print_exact.xhp">定义打印的页数</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0808" title="数据区域">
|
||||||
|
<topic id="scalc/text/scalc/guide/database_define.xhp">定义数据库区域</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/database_filter.xhp">过滤单元格范围</topic>
|
||||||
|
<!-- removed scalc/text/scalc/guide/database_group.xhp -->
|
||||||
|
<topic id="scalc/text/scalc/guide/database_sort.xhp">数据排序 </topic>
|
||||||
|
</node>
|
||||||
|
<node id="0809" title="数据透视表">
|
||||||
|
<topic id="scalc/text/scalc/guide/datapilot.xhp">数据透视表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/datapilot_createtable.xhp">创建数据透视表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/datapilot_deletetable.xhp">删除数据透视表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/datapilot_edittable.xhp">编辑数据透视表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/datapilot_filtertable.xhp">筛选数据透视表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/datapilot_tipps.xhp">选择数据透视表输出范围</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/datapilot_updatetable.xhp">更新数据透视表</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0810" title="方案">
|
||||||
|
<topic id="scalc/text/scalc/guide/scenario.xhp">使用方案</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0811" title="引用">
|
||||||
|
<topic id="scalc/text/scalc/guide/relativ_absolut_ref.xhp">地址和引用,绝对和相对</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/cellreferences.xhp">引用其他文档中的单元格</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/cellreferences_url.xhp">引用其他工作表和参考 URL</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/cellreference_dragdrop.xhp">通过拖放来引用单元格</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/address_auto.xhp">寻址时识别名称</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0812" title="查看、选择和复制">
|
||||||
|
<topic id="scalc/text/scalc/guide/table_view.xhp">修改表格视图</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/formula_value.xhp">显示公式或数值</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/line_fix.xhp">行或列作为标题固定</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/multi_tables.xhp">浏览工作表标签</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/edit_multitables.xhp">复制到多个工作表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/cellcopy.xhp">仅复制可见单元格</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/mark_cells.xhp">选择多个单元格</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0813" title="公式和计算">
|
||||||
|
<topic id="scalc/text/scalc/guide/formulas.xhp">通过公式计算</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/formula_copy.xhp">复制公式</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/formula_enter.xhp">输入公式</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/formula_value.xhp">显示公式或数值</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/calculate.xhp">电子表格中的计算</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/calc_date.xhp">使用日期和时间进行计算</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/calc_series.xhp">自动计算序列</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/calc_timevalues.xhp">计算时差</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/matrixformula.xhp">输入矩阵公式</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0814" title="保护">
|
||||||
|
<topic id="scalc/text/scalc/guide/cell_protect.xhp">保护单元格不被修改</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/cell_unprotect.xhp">取消单元格保护</topic>
|
||||||
|
</node>
|
||||||
|
<node id="0815" title="其他">
|
||||||
|
<!-- removed scalc/text/scalc/guide/autofill.xhp -->
|
||||||
|
<topic id="scalc/text/scalc/guide/auto_off.xhp">停用自动修改</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/consolidate.xhp">合并计算数据</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/goalseek.xhp">应用单变量求解</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/multioperation.xhp">应用多重计算</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/multitables.xhp">应用多个工作表</topic>
|
||||||
|
<topic id="scalc/text/scalc/guide/validity.xhp">单元格内容的有效性</topic>
|
||||||
|
</node>
|
||||||
|
</help_section>
|
||||||
|
</tree_view>
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
###############################################################
|
||||||
|
#
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing,
|
||||||
|
# software distributed under the License is distributed on an
|
||||||
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
# KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
#
|
||||||
|
###############################################################
|
||||||
|
|
||||||
|
Title=%PRODUCTNAME Chart
|
||||||
|
|
||||||
|
Language=zh-CN
|
||||||
|
Order=4
|
||||||
|
Start=text%2Fschart%2Fmain0000.xhp
|
||||||
|
Heading=headingheading
|
||||||
|
Program=CHART
|
||||||
|
07.07.04 00:00:00
|
||||||
|
|
||||||
12590
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/schart.db
Normal file
12590
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/schart.db
Normal file
File diff suppressed because it is too large
Load Diff
4409
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/schart.ht
Normal file
4409
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/schart.ht
Normal file
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1926
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/schart.key
Normal file
1926
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/schart.key
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--***********************************************************
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing,
|
||||||
|
* software distributed under the License is distributed on an
|
||||||
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
* KIND, either express or implied. See the License for the
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*
|
||||||
|
***********************************************************-->
|
||||||
|
<tree_view version="24-Aug-2004">
|
||||||
|
<help_section application="scalc" id="05" title="图表和图解">
|
||||||
|
<node id="0501" title="一般信息">
|
||||||
|
<topic id="schart/text/schart/main0000.xhp">%PRODUCTNAME 中的图表</topic>
|
||||||
|
<topic id="schart/text/schart/main0503.xhp">%PRODUCTNAME 图表功能</topic>
|
||||||
|
<topic id="schart/text/schart/04/01020000.xhp">图表的快捷键</topic>
|
||||||
|
</node>
|
||||||
|
</help_section>
|
||||||
|
</tree_view>
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
###############################################################
|
||||||
|
#
|
||||||
|
# Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
# or more contributor license agreements. See the NOTICE file
|
||||||
|
# distributed with this work for additional information
|
||||||
|
# regarding copyright ownership. The ASF licenses this file
|
||||||
|
# to you under the Apache License, Version 2.0 (the
|
||||||
|
# "License"); you may not use this file except in compliance
|
||||||
|
# with the License. You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing,
|
||||||
|
# software distributed under the License is distributed on an
|
||||||
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
# KIND, either express or implied. See the License for the
|
||||||
|
# specific language governing permissions and limitations
|
||||||
|
# under the License.
|
||||||
|
#
|
||||||
|
###############################################################
|
||||||
|
|
||||||
|
|
||||||
|
Title=%PRODUCTNAME Base
|
||||||
|
|
||||||
|
Language=zh-CN
|
||||||
|
Order=7
|
||||||
|
Start=text%2Fshared%2Fexplorer%2Fdatabase%2Fmain.xhp
|
||||||
|
Heading=headingheading
|
||||||
|
Program=DATABASE
|
||||||
|
07.07.04 00:00:00
|
||||||
11787
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/sdatabase.db
Normal file
11787
jodconverter-web/src/main/office/OpenOffice 4/help/zh-CN/sdatabase.db
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user