C# 클래스 Novacode.CustomProperty

파일 보기 프로젝트 열기: WordDocX/DocX 1 사용 예제들

Private Properties

프로퍼티 타입 설명
CustomProperty System
CustomProperty System

공개 메소드들

메소드 설명
CustomProperty ( string name, System.DateTime value ) : System

Create a new CustomProperty to hold a DateTime.

CustomProperty ( string name, bool value ) : System

Create a new CustomProperty to hold a bool.

CustomProperty ( string name, double value ) : System

Create a new CustomProperty to hold a double.

CustomProperty ( string name, int value ) : System

Create a new CustomProperty to hold an int.

CustomProperty ( string name, string value ) : System

Create a new CustomProperty to hold a string.

비공개 메소드들

메소드 설명
CustomProperty ( string name, string type, object value ) : System
CustomProperty ( string name, string type, string value ) : System

메소드 상세

CustomProperty() 공개 메소드

Create a new CustomProperty to hold a DateTime.
public CustomProperty ( string name, System.DateTime value ) : System
name string The name of this CustomProperty.
value System.DateTime The value of this CustomProperty.
리턴 System

CustomProperty() 공개 메소드

Create a new CustomProperty to hold a bool.
public CustomProperty ( string name, bool value ) : System
name string The name of this CustomProperty.
value bool The value of this CustomProperty.
리턴 System

CustomProperty() 공개 메소드

Create a new CustomProperty to hold a double.
public CustomProperty ( string name, double value ) : System
name string The name of this CustomProperty.
value double The value of this CustomProperty.
리턴 System

CustomProperty() 공개 메소드

Create a new CustomProperty to hold an int.
public CustomProperty ( string name, int value ) : System
name string The name of this CustomProperty.
value int The value of this CustomProperty.
리턴 System

CustomProperty() 공개 메소드

Create a new CustomProperty to hold a string.
public CustomProperty ( string name, string value ) : System
name string The name of this CustomProperty.
value string The value of this CustomProperty.
리턴 System