Questions tagged [customproperty]
27 questions
5
votes
1 answer
Property Grid : How to set Display name label of each property to the right of grid?
I have implemented a custom property grid, I want to know if I can change position of label of each property from left to the right.
My custom property grid shows property as you can see in the picture.
I want to change it to be like this:
This is…

Nastaran Hakimi
- 695
- 1
- 16
- 36
3
votes
1 answer
Sharepoint 2007: Create a multi-line text custom property for a custom field type?
I'm trying to extend the built-in Choice field type to include another piece of data: a correct answer. With this, users would be able to create their own tests directly within Sharepoint instead of having to use InfoPath or some other convoluted…

minameismud
- 91
- 1
- 9
3
votes
1 answer
How can I access a uiview cusom property like tag on tap gesture in Objective-C?
Actually i want to do animation in objective.I have added list of imageview(subclassed) to view and stored all imageView in Array as following
CustomImageView *imageView = [[CustomImageView alloc]init];
imageView.tag = index;
…

Gopik
- 255
- 2
- 17
3
votes
6 answers
Display custom document property value in Excel 2007 worksheet cell
I've created a program that creates and populates a custom document property in an Excel 2007 workbook file. However I haven't been able to show the value of this property in a worksheet cell. In Word 2007 you can just select "Insert -> Quick Parts…

LeonZandman
- 3,054
- 6
- 29
- 26
2
votes
1 answer
How do I update custom properties linked to a text box in PowerPoint using C#
I am writing a VSTO PowerPoint add-in. One of the things I would like to achieve is to be able to update custom properties programmatically using C#.
If I link a custom property to a text box (using GUI), I am able to display the value of the…

kammie
- 21
- 3
2
votes
2 answers
How to save custom vertex properties with openmesh in Python?
I am working with openmesh installed in Python 3.6 via pip. I need to add custom properties to vertices of a mesh in order to store some data at each vertex. My code goes as follows :
import openmesh as OM
import numpy as np
mesh =…

CDuvert
- 367
- 1
- 3
- 14
1
vote
1 answer
DataGridView as a property type
I have a piece of code something like below. I'm using Microsoft Visual C# Express Edition. My problem is that I can't add columns to a DataGridView in design-time which is a member of another class. Here is my code:
using System;
using…

Taha
- 531
- 4
- 21
1
vote
1 answer
How to test the existence of a Word Custom Document Property (CDP) in a field code?
The following fieldcode in Word displays the contents of the custom document property "myproperty" when it exists; otherwise it does nothing
{IF {DOCPROPERTY "myproperty"} <> "Error! Unknown document property name." {DOCPROPERTY "myproperty"}}
The…

Quiche31
- 119
- 10
1
vote
0 answers
Writable List type custom control property in VB.net
I am using a typeconverter to make my customized property of combobox as list type during design-time. I am doing it in VB.net. I have implemented like this:
It is working fine but it become selectable…

Shah Samiur Rashid
- 11
- 1
1
vote
0 answers
Binding a custom property to a datatable field ,the source table is changing when navigating through items
I've got custom control inherited from a textbox I added a custom property as follows
Dim _MyVal As Object
Public Property MyVal As Object
Get
Return _MyVal
End Get
Set(value As Object)
_MyVal = value
If…

Ehab
- 81
- 1
- 3
1
vote
0 answers
Read custom properties from file
I am trying to read the custom properties from a Solid Edge file (Right clic -> Properties -> Custom tab).
But I found only 2 types of code.
The first is for read/set custom properties on a Office document (like .doc / .docx). And the second is…

Phobie
- 99
- 2
- 15
1
vote
1 answer
binding tooltip to custom dependency property
this code work correct:

user3896705
- 13
- 1
- 3
1
vote
0 answers
Visual Webpart Custom Property filled for the first time
I have a webpart with two custom properties: path to a folder and name of parent node.
I want the page only to reload if one of these properties changes. If there is no change of the properties I want to expand and populate the folder structure of…

Jimmy92
- 11
- 1
1
vote
1 answer
How can I read the value of a custom field from my Sitecore Webforms?
I'm using Sitecore WebForms for Marketeers. I have created a custom field with a custom property. The custom field works fine.
I want to read the custom property when I click on the submit button, but I do not know how I can read the custom…

VRC
- 745
- 7
- 16
1
vote
2 answers
umbraco how to update multiple prevalue programatically
I have a member type which has a custom property - lets name it books - of data type checkbox - so multiple choice is possible.
Now I'm trying to update this member programatically with new values for books. In the customxml it comes as cdata, I'm…

nickornotto
- 1,946
- 4
- 36
- 68