From a84166f6f4b0871c25c8851bf1155a7032fa014b Mon Sep 17 00:00:00 2001 From: RĂ¼diger Timm Date: Fri, 26 Nov 2004 14:43:57 +0000 Subject: INTEGRATION: CWS helpcontentbeta (1.1.2); FILE MERGED 2004/09/16 11:45:51 fpe 1.1.2.1: Regular Update --- .../source/text/sbasic/shared/03132300.xhp | 36 ++-- helpcontent2/source/text/sbasic/shared/keys.xhp | 184 ++++++++++----------- .../source/text/sbasic/shared/main0211.xhp | 2 +- 3 files changed, 111 insertions(+), 111 deletions(-) diff --git a/helpcontent2/source/text/sbasic/shared/03132300.xhp b/helpcontent2/source/text/sbasic/shared/03132300.xhp index 3e978c1843..0b09452bb3 100644 --- a/helpcontent2/source/text/sbasic/shared/03132300.xhp +++ b/helpcontent2/source/text/sbasic/shared/03132300.xhp @@ -53,32 +53,32 @@ * * ************************************************************************--> + -CreateUnoValue Function [Runtime] +CreateUnoValue Function [Runtime] /text/sbasic/shared/03132300.xhp Sun Microsystems, Inc. -converted from old format - fpe +converted from old format - fpe - - -
- CreateUnoValue;functionCreateUnoValue Function [Runtime] - Returns an object that represents a strictly typed value referring to the Uno type system. -
- This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name. - The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces. - Syntax: - oUnoValue = CreateUnoValue( "[]byte", MyBasicValue ) to get a byte sequence. - If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used. - This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service. - In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You there use the CreateUnoValue() function to create a value for the unknown Uno type. - You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution. - - +
+CreateUnoValue function + +CreateUnoValue Function [Runtime] +Returns an object that represents a strictly typed value referring to the Uno type system. +
+This object is automatically converted to an Any of the corresponding type when passed to Uno. The type must be specified by its fully qualified Uno type name. +The $[officename] API frequently uses the Any type. It is the counterpart of the Variant type known from other environments. The Any type holds one arbitrary Uno type and is used in generic Uno interfaces. +Syntax: +oUnoValue = CreateUnoValue( "[]byte", MyBasicValue ) to get a byte sequence. +If CreateUnoValue cannot be converted to the specified Uno type, and error occurs. For the conversion, the TypeConverter service is used. +This function is intended for use in situations where the default Basic to Uno type converting mechanism is insufficient. This can happen when you try to access generic Any based interfaces, such as XPropertySet::setPropertyValue( Name, Value ) or X???Container::insertBy???( ???, Value ), from $[officename] Basic. The Basic runtime does not recognize these types as they are only defined in the corresponding service. +In this type of situation, $[officename] Basic chooses the best matching type for the Basic type that you want to convert. However, if the wrong type is selected, an error occurs. You there use the CreateUnoValue() function to create a value for the unknown Uno type. +You can also use this function to pass non-Any values, but this is not recommend. If Basic already knows the target type, using the CreateUnoValue() function will only lead to additional converting operations that slow down the Basic execution. +
diff --git a/helpcontent2/source/text/sbasic/shared/keys.xhp b/helpcontent2/source/text/sbasic/shared/keys.xhp index 8c5b916436..c55c7e47f3 100755 --- a/helpcontent2/source/text/sbasic/shared/keys.xhp +++ b/helpcontent2/source/text/sbasic/shared/keys.xhp @@ -1,4 +1,4 @@ - + - - - - -Keyboard Shortcuts in the Basic IDE -/text/sbasic/shared/keys.xhp - - -Sun Microsystems, Inc. -converted from old format - fpe - - - + ************************************************************************--> + + + + +Keyboard Shortcuts in the Basic IDE +/text/sbasic/shared/keys.xhp + + +Sun Microsystems, Inc. +converted from old format - fpe + + +
-keyboard;in IDE -shortcut keys;Basic IDE -IDE;keys - -Keyboard Shortcuts in the Basic IDE -
-In the Basic IDE you can use the following keyboard shortcuts: - - - -Action - - -Keyboard shortcut - - - - -Run code starting from the first line, or from the current breakpoint, if the program stopped there before - - -F5 - - - - -Stop - - -Shift+F5UFI: feature mail "changed/CWS tbe10 : Basic IDE keyboard shortcuts" - - - - -Add watch for the variable at the cursor - - -F7 - - - - -Single step through each statement, starting at the first line or at that statement where the program execution stopped before. - - -F8 - - - - -Single step as with F8, but a function call is considered to be only one statement - - -Shift+F8 - - - - -Set or remove a breakpoint at the current line or all breakpoints in the current selection - - -F9 - - - - -Enable/disable the breakpoint at the current line or all breakpoints in the current selection - - -Shift+F9 - - -
- -A running macro can be aborted with Shift+Ctrl+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+Ctrl+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8. - -
+keyboard;in IDE +shortcut keys;Basic IDE +IDE;keyboard shortcuts + +Keyboard Shortcuts in the Basic IDE + +In the Basic IDE you can use the following keyboard shortcuts: + + + +Action + + +Keyboard shortcut + + + + +Run code starting from the first line, or from the current breakpoint, if the program stopped there before + + +F5 + + + + +Stop + + +Shift+F5UFI: feature mail "changed/CWS tbe10 : Basic IDE keyboard shortcuts" + + + + +Add watch for the variable at the cursor + + +F7 + + + + +Single step through each statement, starting at the first line or at that statement where the program execution stopped before. + + +F8 + + + + +Single step as with F8, but a function call is considered to be only one statement + + +Shift+F8 + + + + +Set or remove a breakpoint at the current line or all breakpoints in the current selection + + +F9 + + + + +Enable/disable the breakpoint at the current line or all breakpoints in the current selection + + +Shift+F9 + + +
+ +A running macro can be aborted with Shift+Ctrl+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+Ctrl+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8. + +
diff --git a/helpcontent2/source/text/sbasic/shared/main0211.xhp b/helpcontent2/source/text/sbasic/shared/main0211.xhp index bd2aeb7f75..e79c40da05 100644 --- a/helpcontent2/source/text/sbasic/shared/main0211.xhp +++ b/helpcontent2/source/text/sbasic/shared/main0211.xhp @@ -67,7 +67,7 @@
- toolbars; Basic IDEfunction bar; macrosmacros; function barmacro toolbarMacro Toolbar + toolbars; Basic IDEmacro toolbarMacro Toolbar The Macro Toolbar contains commands to create, edit, and run macros.
-- cgit