Sandcastle documentation in a ExcelDNA project Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag? The Ask Question Wizard is Live!Namespace documentation on a .Net project (Sandcastle)?How would you compare two XML Documents?What is the proper way to reference Embedded Resources in .net xmldoc comments?How do I remedy the “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?How should I document a inherited members?.net XML Documentation Comment include directive in sandcastle not adding to help fileHow to create website from XML documentation comments?Processing XML documentation files prior to SandcastleExcelDna async with cancell allDeploying Excel DNA Application
Why are there no cargo aircraft with "flying wing" design?
What does the "x" in "x86" represent?
How does the particle を relate to the verb 行く in the structure「A を + B に行く」?
When do you get frequent flier miles - when you buy, or when you fly?
How do pianists reach extremely loud dynamics?
How do I stop a creek from eroding my steep embankment?
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
At the end of Thor: Ragnarok why don't the Asgardians turn and head for the Bifrost as per their original plan?
Is it fair for a professor to grade us on the possession of past papers?
Dating a Former Employee
Should I use a zero-interest credit card for a large one-time purchase?
Error "illegal generic type for instanceof" when using local classes
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
First console to have temporary backward compatibility
What's the meaning of 間時肆拾貳 at a car parking sign
Denied boarding although I have proper visa and documentation. To whom should I make a complaint?
How much time will it take to get my passport back if I am applying for multiple Schengen visa countries?
What causes the vertical darker bands in my photo?
Can inflation occur in a positive-sum game currency system such as the Stack Exchange reputation system?
Why do people hide their license plates in the EU?
What exactly is a "Meth" in Altered Carbon?
51k Euros annually for a family of 4 in Berlin: Is it enough?
What does an IRS interview request entail when called in to verify expenses for a sole proprietor small business?
What is the logic behind the Maharil's explanation of why we don't say שעשה ניסים on Pesach?
Sandcastle documentation in a ExcelDNA project
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?
The Ask Question Wizard is Live!Namespace documentation on a .Net project (Sandcastle)?How would you compare two XML Documents?What is the proper way to reference Embedded Resources in .net xmldoc comments?How do I remedy the “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning?How should I document a inherited members?.net XML Documentation Comment include directive in sandcastle not adding to help fileHow to create website from XML documentation comments?Processing XML documentation files prior to SandcastleExcelDna async with cancell allDeploying Excel DNA Application
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a ExcelDNA project which adds a ribbon with udf functions in Excel.
Using ExcelDNA.Documentation I've created some basic documentation for the project. But I find the documentation posibilites limited, and I've started to use Sandcastle on top of it. But I can't get Sandcastle to find the XML comments above each function.
Below is a simple function with both ExcelDNA and Sandcastle documentation
/// <summary>
/// Returns the name of a chemical element.
/// </summary>
/// <param name="symbol">Symbol of an element</param>
/// <returns></returns>
[ExcelFunctionDoc(Name = "zAtomicName", Description = "Returns the name of a chemical element.", Category = "Chemistry", HelpTopic = "xxx.chm!2002")]
public static object zAtomicName([ExcelArgument(Name = "symbol", Description = "is the symbol of the element")] object input)
{
Is the ExcelDNA attributes blocking Sandcastle from finding the XML comments for each function?
I need the ExcelDNA attributes as they are shown in Excel as popup help information when you choose a function.
c# sandcastle excel-dna
add a comment |
I have a ExcelDNA project which adds a ribbon with udf functions in Excel.
Using ExcelDNA.Documentation I've created some basic documentation for the project. But I find the documentation posibilites limited, and I've started to use Sandcastle on top of it. But I can't get Sandcastle to find the XML comments above each function.
Below is a simple function with both ExcelDNA and Sandcastle documentation
/// <summary>
/// Returns the name of a chemical element.
/// </summary>
/// <param name="symbol">Symbol of an element</param>
/// <returns></returns>
[ExcelFunctionDoc(Name = "zAtomicName", Description = "Returns the name of a chemical element.", Category = "Chemistry", HelpTopic = "xxx.chm!2002")]
public static object zAtomicName([ExcelArgument(Name = "symbol", Description = "is the symbol of the element")] object input)
{
Is the ExcelDNA attributes blocking Sandcastle from finding the XML comments for each function?
I need the ExcelDNA attributes as they are shown in Excel as popup help information when you choose a function.
c# sandcastle excel-dna
add a comment |
I have a ExcelDNA project which adds a ribbon with udf functions in Excel.
Using ExcelDNA.Documentation I've created some basic documentation for the project. But I find the documentation posibilites limited, and I've started to use Sandcastle on top of it. But I can't get Sandcastle to find the XML comments above each function.
Below is a simple function with both ExcelDNA and Sandcastle documentation
/// <summary>
/// Returns the name of a chemical element.
/// </summary>
/// <param name="symbol">Symbol of an element</param>
/// <returns></returns>
[ExcelFunctionDoc(Name = "zAtomicName", Description = "Returns the name of a chemical element.", Category = "Chemistry", HelpTopic = "xxx.chm!2002")]
public static object zAtomicName([ExcelArgument(Name = "symbol", Description = "is the symbol of the element")] object input)
{
Is the ExcelDNA attributes blocking Sandcastle from finding the XML comments for each function?
I need the ExcelDNA attributes as they are shown in Excel as popup help information when you choose a function.
c# sandcastle excel-dna
I have a ExcelDNA project which adds a ribbon with udf functions in Excel.
Using ExcelDNA.Documentation I've created some basic documentation for the project. But I find the documentation posibilites limited, and I've started to use Sandcastle on top of it. But I can't get Sandcastle to find the XML comments above each function.
Below is a simple function with both ExcelDNA and Sandcastle documentation
/// <summary>
/// Returns the name of a chemical element.
/// </summary>
/// <param name="symbol">Symbol of an element</param>
/// <returns></returns>
[ExcelFunctionDoc(Name = "zAtomicName", Description = "Returns the name of a chemical element.", Category = "Chemistry", HelpTopic = "xxx.chm!2002")]
public static object zAtomicName([ExcelArgument(Name = "symbol", Description = "is the symbol of the element")] object input)
{
Is the ExcelDNA attributes blocking Sandcastle from finding the XML comments for each function?
I need the ExcelDNA attributes as they are shown in Excel as popup help information when you choose a function.
c# sandcastle excel-dna
c# sandcastle excel-dna
asked Mar 22 at 9:01
Johan AJohan A
5919
5919
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55296092%2fsandcastle-documentation-in-a-exceldna-project%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55296092%2fsandcastle-documentation-in-a-exceldna-project%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown