AddField Properties - Is there a documented order to set them?

Today I experienced something odd. Using the code below my text fields were all being added correctly and formatted "mostly" corrected except with respect to the textSize property. Using this code the textSize property will not set.
var f = this.addField(nbBookmarks(i), "text", nbPageNum(i) - 1, nbCoords);
     f.multiline = true;
     f.borderStyle = border.s;
     f.strokeColor = color.black;
     f.fillColor = color.white;
     f.lineWidth = 1;
     f.style = style.cr;
     f.textSize = 9;
     f.display = display.visible;
On a hunch, I moved the textSize property line to the top (as shown below) and the textSize property sets fine.
var f = this.addField(nbBookmarks(i), "text", nbPageNum(i) - 1, nbCoords);
     f.textSize = 9;
     f.multiline = true;
     f.borderStyle = border.s;
     f.strokeColor = color.black;
     f.fillColor = color.white;
     f.lineWidth = 1;
     f.style = style.cr;
     f.display = display.visible;
Is the "order" of setting the properties of a field documented somewhere? If so, can you please direct me to that place? And if this is right in front of me somewhere and I just can't see it, I apologize.
Thank you.

Wow. Of course it did. I took it out and now the property order doesn't seem to matter. Nothing like some litter to disturb things.
Thanks George. Gold star for you.

Similar Messages

  • Automation Open ?! What's this ? / Methods & Properties not there !

    Hello,
    I'm wondering what's the use of the "automation open" ?
    I'm currently using ActiveX, in order to display a chart coming from the
    MSGRAPH 8.0 ActiveX. It seems to work properly, without using these
    automation open. I siply put a container and use the reference given by this
    container to use the properties & methods of this object.
    Some examples found on the site do use this automation open, other do not !?
    Other problem : Using the MSGraph Activex, I encounter problems with the
    properties & methods : some are there, some are not, following the help file
    given with this activex. I mean that the properties & methods usable in
    labview are not the same of the which should be available
    following the doc
    of the activex. I'm currently using lv 5.0.
    Last question : are there any NI guys there ? Simply asking.
    Matthieu Gaillet [email protected]
    Technicien R&D
    C.C.R.M
    Rue des Belles-Pierres 5
    1421 Ophain
    http://users.skynet.be/ccrm

    Oups... about the Properties & methods there or not there, I made a mistake.
    All is good, sorry.
    PS/ But the other question is still not clear to me !
    M
    Matthieu Gaillet a écrit dans le message :
    [email protected]..
    > Hello,
    >
    > I'm wondering what's the use of the "automation open" ?
    > I'm currently using ActiveX, in order to display a chart coming from the
    > MSGRAPH 8.0 ActiveX. It seems to work properly, without using these
    > automation open. I siply put a container and use the reference given by
    this
    > container to use the properties & methods of this object.
    > Some examples found on the site do use this automation open, other do not
    >
    > Other problem : Using the MSGraph Activex, I encounter problems with the
    > pr
    operties & methods : some are there, some are not, following the help
    file
    > given with this activex. I mean that the properties & methods usable in
    > labview are not the same of the which should be available following the
    doc
    > of the activex. I'm currently using lv 5.0.
    >
    > Last question : are there any NI guys there ? Simply asking.
    >
    > Matthieu Gaillet [email protected]
    > Technicien R&D
    >
    > C.C.R.M
    > Rue des Belles-Pierres 5
    > 1421 Ophain
    > http://users.skynet.be/ccrm
    >
    >
    >
    >

  • Is there a way to permanently set the mailbox order?

    Is there a way to permanently set the sequence in which mailboxes are displayed in the left-most panel of Mail? I can drag and drop the mailboxes into the order I want, and they seem to stick around - at least until I update any of the accounts. The moment I update an accounts prefernces in Preferences, Accounts, the display order is set to the same order that appears on the preferences display. 
    I have a fairly large number of email accounts, and often have to tweak settings, so it's a bit of a pain to have to reset the order every time I make a change.
    This is occurring on both my MBP and my iMac.

    Same question.
    I recently left Snow Leopard to Mountain Lion.
    Previously, in the side bar of Mail, (the one you make visible using "Show" in a previous post here), I was able to drag and drop any of the Reception mailboxes to the place I wanted to select, to put them in the order I wished, and this order remained until I decide to change it.
    This seems not possible any more, or... just for the current session. If I close Mail and reopen, Reception boxes are re-ordered in alphabetic way.
    Any way to make my choice permanent as before ???
    To make it more clear, ordering my way is possible by drag and dropping for private mailboxes, but not for reception mailboxes associated to different mail accounts, the order is lost once Mail is closed.

  • Is there any documentation for filter routine in Data Transfer Process?

    I am trying to create a filter routine in the Data Transfer Process to select different billing types depending on what date the Data Transfer Process is running....
    I have searched through SDN and found some examples, but some formal documentation would help.
    Is there any documention on filtering in a Data Transfer Process using a routine?
    I am in 7.0

    data: l_dow TYPE I,
          L_S_RANGE TYPE rssdlrange.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'F2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'G2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'L2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCDD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCDI'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCR1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZCR2'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZDR1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZEDI'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZMD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRE'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRE1'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZRED'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZSMP'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZUSD'.
    APPEND L_S_RANGE TO l_t_range.
    l_s_range-iobjnm = '0BILL_TYPE'.
    l_S_range-fieldname = 'BILL_TYPE'.
    l_S_range-sign = 'I'.
    l_S_range-option = 'EQ'.
    l_S_range-low = 'ZUSI'.
    APPEND L_S_RANGE TO l_t_range.
    CALL FUNCTION 'DATE_COMPUTE_DAY'
      EXPORTING
        date = sy-datum
      IMPORTING
        day = L_DOW.
    IF l_Dow EQ 5.
      l_s_range-iobjnm = '0BILL_TYPE'.
      l_S_range-fieldname = 'BILL_TYPE'.
      l_S_range-sign = 'I'.
      l_S_range-option = 'EQ'.
      l_S_range-low = 'S1'.
      APPEND L_S_RANGE TO l_t_range.
      l_s_range-iobjnm = '0BILL_TYPE'.
      l_S_range-fieldname = 'BILL_TYPE'.
      l_S_range-sign = 'I'.
      l_S_range-option = 'EQ'.
      l_S_range-low = 'S2'.
      APPEND L_S_RANGE TO l_t_range.
    ENDIF.

  • Is there a photobook ordering option in iPhoto '11 vers. 9.1.5 (615)?

    A friend of mine made a photobook with her Mac. I'd like to do the same. The instructions I've found on the web don't match the menu items in my iMac (vers. 10.7.3). Anybody know what I should do?
    Matthew

    Your question makes not sense
    Is it
    Is there a photobook ordering option in iPhoto '11 vers. 9.1.5 (615)?
    Then the answer is yes
    AS to what your friend did - with no information no one can tell you if you can do the same
    and as to ordering with a different version (since 9.1.5 does not run under OS X 10.7.3 which you say you have) then no one can answer unless you tell us wha tyou actually have
    And not that there are 5 or 6 versions of Iphoto that run under OS X 10.7.3 so once again for an answer you actually have to provide information
    So the answer to your headline question is yes and to your continued rambleing is who knows - not enough information to answer
    LN

  • Is there any documentation for iBooks Author.

    Is there any documentation for iBooks Author.

    Apple has a FAQ article at: support.apple.com/kb/HT5071
    You can also go here for information: www.apple.com/support/mac-apps/ibooksauthor/
    Google also has a lot of third party information with a simple search.
    And of course you can always to to the iBooks Author forum here on Apple Support Communities. The link for that is here: discussions.apple.com/community/ibooks/ibooks_author

  • Is there any documentation which throws light on how data aggregation happens in data warehouse grooming? what algorithm exactly it follows in different aggregation type (raw, hourly, daily)?

    Is there any documentation which throws light on how data aggregation happens in data warehouse grooming? what algorithm exactly it follows in different aggregation type (raw, hourly, daily)?
    How exactly it picks up a specific data value during Hourly aggregations and Daily aggregations?As in  How the value is chosen. Does it say averages out or simply picks  value at the start of the hour/day or end of the hour/day ??

    I'll try one more time. :)
    Views in the operations console are derived from data in the operational database. This is always raw data, and typically does not go back more than 7 days.
    Reports get data from the data warehouse. Unless you create a custom report that uses raw data, you will never see raw data in a report - Microsoft and probably all 3rd party vendors do not develop reports that fetch raw data.
    Reports use aggregated data - hourly and daily. The data is aggregated by min, max, and avg sample for that particular aggregation. If it's hourly data, then you will see the min, max, and avg for that entire hour. Same goes for daily - you will see the
    min, max, and avg data sample for that entire day.
    And to try clarifying even more, the values you see plotted on the report are avg samples. If you drill into the performance detail report, then you can see the min, max, and avg samples, as well as standard deviation (which is calculated based on these
    three values).
    Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

  • Is there any documentation on Database parameters?

    Hi
    We are trying to plan for future growth and make sure that our current structure is optimal. I am looking for some documentation on testing done by Oracle to get some guidelines. I have looked through a couple of Oracle white papers ('0Building Scalable and Performant..........' and 'Page Generation ..........'). I have also looked at some of the white papers regarding architecture.
    My questions
    Has Oracle done any testing for the database? Have there been any tests as to SGA, Multithreded vs dedicated, etc.. ?
    Is there any documentation?
    Thanks

    Mukesh,
    When we ran our load tests, we found that database settings were simply not the bottleneck, at least for the overhead of generating Portal pages and running a Portal instance. Of course, if you're using the database for other purposes, then you need to tune the database as you would for any other application. The type of tuning you do is totally dependent on your unique configuration and application mix. I suggest you refer to the Oracle8i Designing and Tuning for Performance manual.
    Regards,
    Jerry
    null

  • Is there any documentation on Peoplesoft CRM 9 HelpDesk SLA's?

    Hi,
    Is there any documentation available on Peoplesoft CRM 9.0 HelpDesk about Service Level Agreements for internal employees?
    We are looking into implementing Service Level Agreements on the Help Desk module for internal clients (employees). I am looking for any sort of documentation which would help me understand the current out of the box functionality of Service Level Agreements relating to how t functions for internal clients. Any assistance would be appreciated
    Thanks
    Elana

    Please verify the below online PeopleBook help for CRM9.
    http://download.oracle.com/docs/cd/E12341_01/crm9pbr0_run2/eng/psbooks/index.htm
    Thank you!
    Best Regards
    Soundappan

  • Is there any documentation on creating basic paper reports?

    Hi - I have just started to try to create a report. We have 9i reports but don't need any of the web stuff. I only need to create reports off of our database, run them on my workstation, and print out hardcopies to give to 1 or 2 managers.
    Is there any documentation that would just teach me how to create simple reports without all the web functionality? I was trying to follow along in the Reports Builder 6i, but it seems a lot has changed since 6i and I am having trouble just trying to find the corresponding buttons in 9i.
    I need to learn how to create reports, triggers, and especially I want to learn how to rearrange the report output after it has been created. It seems very confusing to me how to do this on Paper Layout or Paper Design screen.
    Thanks for any help. I would even go buy a book if there were a good one.

    Links to all reports docs
    http://otn.oracle.com/documentation/reports_dev.html
    Oracle9i Reports Building Reports ( very extensive )
    (PDF version ) http://download.oracle.com/otn/other/general/B10310_01.pdf [ 8 MB ]
    (HTML version ) http://otn.oracle.com/products/reports/htdocs/getstart/docs/B10310_01/title.htm
    Thanks
    The Oracle Reports Team

  • Is there any documentation regarding the fuego.fdi.* libraries

    Is there any documentation regarding the fuego.fdi.* libraries
    thanks

    Hey lloyd,
    It looks like there is!
    Within Studio, click on the 'Documentation' flap on the bottom of the screen.
    Then, open the project flap, and navigate to Catalog -> Fuego -> Fdi
    Double click on any of the individual components, and its documentation will appear within the documentation flap on the lower portion of the screen.
    If you don't see any documentation, check the tabs at the top of the documentation flap - the tabs allow you to switch between the documentation for the current method you're working on, and the component you've selected.
    -Noel

  • Is there any Documentation frame work for OAF development

    hi
    Is there any Documentation frame work for OAF development like AIM Documentation for RICE components ?
    Hence , it is very clear that, MD50 and MD70 template is not for the OAF java development.
    Is there any need to document the oaf development, hence it is using MVC architecture and all the components of the OAF development is very transparent.
    thanks

    You can extra sections if needed based on the customizations / extensions / personalizations.
    Cheers
    AJ

  • I have photos in a DVD. In order to visualize them in iPhoto, must I necessarily import them? Can't I see the pictures from the media without importing? If not, is there any application with this functionality? I dont't like pre-visualization for photos.

    I have photos in a DVD. In order to visualize them in iPhoto, must I necessarily import them? Can't I see the pictures from the media without importing? If not, is there any application with this functionality? I need an app that allows me to navigate through the photos without selecting all of them. I realy dont't like pre-visualization for photos...

    In order to visualize them in iPhoto, must I necessarily import them?
    iPhoto is a Database. Before it can work with any data it must be imported to the database, so yes it is necessry to import them.
    Can't I see the pictures from the media without importing?
    See above.
    If not, is there any application with this functionality?
    Hundreds. Any image viewer will do the job. On your Mac the Finder has QuickLook and there is the Preview app as well. Online you can download any of these:
    http://www.macupdate.com/find/mac/image%20viewer

  • How can we identify what are all user exits are there for sales orders,deli

    Dear All,
    How can we identify what are all user exits are there for sales orders,deliverys and invoices
    thanks
    nitchel v

    Hi Nitchel
    There are many ways to find out the user exits..
    For example for VA01.
    Goto Transaction ie VA01:
    goto System-- Status
    doubleclick on the program name ie SAPMV45A
    SE38 -> Enter the program name and in the program( SAPMV45A) goto -- attributes
    get the package name from here ie VA
    note the package(VA) and get back to main screen
    goto SMOD tcode  and click on find button in the package spec giv the package name ie VA and execute it
    you will find list of exits available
    check out the exit that suits ur requirement
    goto cmod and create a new project and implement in that user exit.
    You will get the following exits in SMOD..
    SDTRM001  Reschedule schedule lines without a new ATP check
    V45A0001  Determine alternative materials for product selection
    V45A0002  Predefine sold-to party in sales document
    V45A0003  Collector for customer function modulpool MV45A
    V45A0004  Copy packing proposal
    V45E0001  Update the purchase order from the sales order
    V45E0002  Data transfer in procurement elements (PRreq., assembly
    V45L0001  SD component supplier processing (customer enhancements
    V45P0001  SD customer function for cross-company code sales
    V45S0001  Update sales document from configuration
    V45S0003  MRP-relevance for incomplete configuration
    V45S0004  Effectivity type in sales order
    V45W0001  SD Service Management: Forward Contract Data to Item
    V46H0001  SD Customer functions for resource-related billing
    V60F0001  SD Billing plan (customer enhancement) diff. to billing
    For Delivery you will get .. here the package name will be VL.
    V02V0001  Sales area determination for stock transport order
    V02V0002  User exit for storage location determination
    V02V0003  User exit for gate + matl staging area determination (h
    V02V0004  User Exit for Staging Area Determination (Item)
    V50PSTAT  Delivery: Item Status Calculation
    V50Q0001  Delivery Monitor: User Exits for Filling Display Fields
    V50R0001  Collective processing for delivery creation
    V50R0002  Collective processing for delivery creation
    V50R0004  Calculation of Stock for POs for Shipping Due Date List
    V50S0001  User Exits for Delivery Processing
    V53C0001  Rough workload calculation in time per item
    V53C0002  W&S: RWE enhancement - shipping material type/time slot
    V53W0001  User exits for creating picking waves
    VMDE0001  Shipping Interface: Error Handling - Inbound IDoc
    VMDE0002  Shipping Interface: Message PICKSD (Picking, Outbound)
    VMDE0003  Shipping Interface: Message SDPICK (Picking, Inbound)
    VMDE0004  Shipping Interface: Message SDPACK (Packing, Inbound)
    For Billing VF01..Package is VF..
    SDVFX007  User exit: Billing plan during transfer to Accounting
    SDVFX008  User exit: Processing of transfer structures SD-FI
    SDVFX009  Billing doc. processing KIDONO (payment reference numbe
    SDVFX010  User exit item table for the customer lines
    SDVFX011  Userexit for the komkcv- and kompcv-structures
    V05I0001  User exits for billing index
    V05N0001  User Exits for Printing Billing Docs. using POR Procedu
    V60A0001  Customer functions in the billing document
    V60P0001  Data provision for additional fields for display in lis
    V61A0001  Customer enhancement: Pricing
    Or another way is ..
    - Get the program name for that T-Code
    - Go to that program
    - In that program, search for word 'EXIT' or 'CUSTOMER-FUNCTION' by using where-used list which will give u the list of user exits for that program
    And also you can check in the tables in SE16 for user exits..
    MODSAP - Stores SAP Enhancements
    MODSAPT - Stores SAP Enhancements - Short Texts
    MODACT - Stores Modifications
    And there are other ways as well , pls check the forum for this ,
    Regards,
    Vvieks
    Note : If you have any specific requirement then pls let us know , we will guide you

  • Is there a documented correlation between high CPU/RAM usage and poor system performance?

    I realize this subject is not black and white and has quite a bit of depth to it as high usage of either the CPU or RAM does not necessarily mean that a computer is running slowly.
    However, is there any documentation, scientific research or academic journal that makes a correlation between poor system performance and the consumption of system resources.
    It goes without saying that if you use all your RAM then there won't be any available for additional programs, but can this be substantiated with metrical data?

    Check this:
    http://superuser.com/questions/78362/what-is-the-relationship-between-cpu-usage-and-ram
    http://www.computermemoryupgrade.net/memory-influence-on-performance.html
    Fouad Roumieh

Maybe you are looking for

  • High kernel_task RAM Usage in Yosemite 10.10.1

    Hello All, No matter what I'm running, I always have high RAM usage with kernel_task. I've looked around the other threads and never found a definitive solution. I wouldn't call it crippling to my system but I would like to resolve the issue. Below i

  • What table are Exception Messages in MRP stored?

    The requirement is to develop an error report from an MRP run to capture the exception messages along with the selection groups. Ex:Selection Gr 2; Exception Message 15: Reschedules In. I am unable to track where exactly the exception messages are st

  • Multi Mapping issue - *Split mapping created no messages*

    Hi, The scenario I am trying to test is a multi mapping scenario where I am trying to split one source message and create two target messages by using two different inbound service interfaces, one for each message type. I am on PI 7.1 and when I test

  • IPhone cellular network issues after iOS 7.0.6 update

    iPhone 5s recently updated to 7.0.6 having cellular network issues. Works on LTE, dead while on 3G. Wifi works. Anyone know why?

  • Uploading Ipod Software :: PROBLEMS!

    My dad and I got my mom a lovely video iPod. I was helping her upload the software onto her Windows XP laptop and I accidently plugged in the iPod before uploading the software. We uploaded the software and even got some music on, but we kept getting